function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AdamDawAdamDaw 

Beatbox on Sandbox

Has anyone succesfully logged into a sandbox instance using the beatbox client? I've tried setting the default server url value to https://test.salesforce.com/services/Soap/u/20.0 instead, but I'm getting an INVALID_LOGIN SoapFaultError when I try to log in from that point.

 

Cheers

 

Adam

SuperfellSuperfell

You should just set the serverUrl before calling login, e.g.

 

 

svc = beatbox.Client()
svc.serverUrl = "https://test.salesforce.com/services/Soap/u/20.0"
loginResult = svc.login(username, password)