quickblox 500 内部错误 REST API 调用



我们希望通过我们的WEB-Java应用程序创建Quickblox用户。

为了获得相同的工作,我们尝试首先通过Postman和CURL进行REST API调用,然后继续Java代码。

但是,我们收到 500 个内部错误

网址

https://api.quickblox.com/session.json

Header
Content-Type: application/json"
QuickBlox-REST-API-Version: 0.1.0

身体

{"application_id": “35221”, "auth_key": "wU8JrJ-DKamUB8v", "timestamp": “1456378718”, "nonce": “1112”, "signature": "81f3967265c87de025010eb9298d169555085e91”}

生成签名

application_id=35221&auth_key=wU8JrJ-DKamUB8v&nonce=1112&timestamp=1456378718

这是我们得到的响应"连接→保持活动

状态
Content-Length → 948
Content-Type → text/html; charset=utf-8
Date → Thu, 25 Feb 2016 05:48:08 GMT
Server → nginx/1.8.0
Status → 500 Internal Server Error
X-Rack-Cache → invalidate, pass
X-Request-Id → 3a47c3daaf9ad353a5b592459c6f3345
X-Runtime → 0.003346`

据我了解,参数如 API 文档中的建议。请帮忙,因为我们有点卡住了,无法前进。

还发布导致相同错误的 curl 等效项

curl -X POST 
-H "Content-Type: application/json" 
-H "QuickBlox-REST-API-Version: 0.1.0” 
-d '{"application_id": “35221”, "auth_key": "wU8JrJ-DKamUB8v", "timestamp": “1456378718”, "nonce": “1112”, "signature": "81f3967265c87de025010eb9298d169555085e91”}’ 
https://api.quickblox.com/session.json

application_id=35221&auth_key=wU8JrJ-DKamUB8v&nonce=1112&timestamp=1456378718
authorisation secret - FEu2AN8CfgU7VF4

谢谢阿卡什

首先定义所有与应用程序相关的:

     DEFINE('APPLICATION_ID', 23424);
     DEFINE('AUTH_KEY', "dfsadfasdfsadf-");
     DEFINE('AUTH_SECRET', "23421342134");
     DEFINE('USER_LOGIN', "rahul");
     DEFINE('USER_PASSWORD', "fghdf56456456");       
     // Quickblox endpoints
     DEFINE('QB_API_ENDPOINT', "https://api.quickblox.com");
     DEFINE('QB_PATH_SESSION', "session.json");

定义后,在 curl 会话 api 命中创建签名并传递$post_body,获取令牌并在所有webservices php中使用令牌:

        $nonce = rand();
        $timestamp = time();
        $signature_string = "application_id=".APPLICATION_ID."&auth_key=".AUTH_KEY."&nonce=".$nonce."&timestamp=".$timestamp."&user[login]=".USER_LOGIN."&user[password]=".USER_PASSWORD;
        $signature = hash_hmac('sha1', $signature_string , AUTH_SECRET);
        $post_body = http_build_query(array(
                             'application_id' => APPLICATION_ID,
                             'auth_key' => AUTH_KEY,
                             'timestamp' => $timestamp,
                             'nonce' => $nonce,
                             'signature' => $signature,
                             'user[login]' => USER_LOGIN,
                             'user[password]' => USER_PASSWORD
                             ));    

最新更新