我得到了quickblox会话休息的令牌.
现在我想在quickblox上注册我的用户,但是接下来作为对cURL的回复: {"code":null,"message":"没有提供数据"}
我写了以下代码:
<pre><code>
$token = '66575f5085173718a73d74781223d0bc14e3abb1';
$post_body = http_build_query(array(
'login' => 'test1436547745678568768',
'password' => 'test1',
'email' => 'test1@test1.com',
'external_user_id' => '68764641',
'facebook_id' => '',
'twitter_id' => '',
'full_name' => 'test1 test1',
'phone' => '',
'website' => '',
'tag_list' => '',
));
$signUpCurl = curl_init();
curl_setopt($signUpCurl, CURLOPT_URL, self::QB_API_ENDPOINT . '/' . self::QB_PATH_USER);
curl_setopt($signUpCurl, CURLOPT_HTTPHEADER, array("QB-Token: ".$token));
curl_setopt($signUpCurl, CURLOPT_POST, true);
curl_setopt($signUpCurl, CURLOPT_POSTFIELDS, $post_body);
curl_setopt($signUpCurl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($signUpCurl, CURLOPT_SSL_VERIFYPEER, FALSE);
$responce = curl_exec($signUpCurl);
// Check errors
if ($responce) { …Run Code Online (Sandbox Code Playgroud)