0
當我試圖連接我的解析雲它顯示了一個錯誤無法使用PHP腳本
the username XYZ already taken
我曾嘗試這個代碼連接到Parse.com雲:
public function setUp() {
$this->parseUser = new parseUser;
$this->testUser = array(
'username' => 'XYZ',
'password' => '*******',
'email' => '[email protected]',
'customField' => 'customValue'
);
}
我parseconfig.php
文件看起來像這樣
class parseConfig {
const APPID = 'kS131sdje....';
const MASTERKEY = 'w1d...';
const RESTKEY = 'o16r...';
const PARSEURL = 'https://api.parse.com/1/';
}
你能幫我嗎?它是試圖SignUp而不是Signin?
我下載從下面的鏈接這段代碼,我試圖將它連接到我的Parse.com雲
https://github.com/apotropaic/parse.com-php-library
確定我試圖此。 – 2014-11-05 08:21:21
我用捲曲來做。順便謝謝[Wrrdpress Developer](https://stackoverflow.com/users/1364793/wordpress-developer)尋求幫助。 – 2014-11-06 05:25:34
並且當您有MASTER KEY時無需登錄 – 2014-11-06 05:26:31