When I try to connect my parse cloud it shows an error
the username XYZ already taken
I have tried this code:
public function setUp() {
$this->parseUser = new parseUser;
$this->testUser = array(
'username' => 'XYZ',
'password' => '*******',
'email' => '[email protected]',
'customField' => 'customValue'
);
}
my parseconfig.php file look like this
class parseConfig {
const APPID = 'kS131sdje....';
const MASTERKEY = 'w1d...';
const RESTKEY = 'o16r...';
const PARSEURL = 'https://api.parse.com/1/';
}
Can you help me? Is it trying to SignUp instead of Signin?
I downloaded this code from the link below and am trying to connect it to my Parse.com cloud