1

我想设置一个标题以从 Flipkart 获取令牌。我不知道如何在 curl 中设置标题。我的标题应该喜欢

curl -u <appid>:<app-secret> https://sandbox-api.flipkart.net/oauth-service/oauth/token\?grant_type\=client_credentials\&scope=Seller_Api
4

2 回答 2

2

看起来您正在尝试进行 HTTP 基本身份验证,或者至少这就是-ucurl 选项在像这样单独使用时所做的事情。

在 PHP 中,您将为这样的 curl 请求设置基本身份验证,假设$ch是您的 curl 实例(您可以使用 获取curl_init):

curl_setopt($ch, CURLOPT_USERPWD, 'appid:appsecret');

有关更多信息,请参阅curl 文档。curl_setopt

于 2016-03-15T04:56:38.740 回答
2

在 curl 命令中,您必须这样做,

curl -u your-app-id:your-app-token https://sandbox-api.flipkart.net/oauth-service/oauth/token\?grant_type\=client_credentials\&scope=Seller_Api

成功后你会得到这样的结果,

{"access_token":"394b7d-418a-43f6-8fd5-e67aea2c4b","token_type":"bearer","expires_in":4657653,"scope":"Seller_Api"}

通过使用此令牌,您可以进行进一步的 api 调用,例如列出 api,

curl -H "Authorization:Bearer your-access-token" -H "Content-Type: application/json" -d 'json-here-see-format-in-api-example' https://url-end-point-refer-api-docs

注意:您必须在“ https://sandbox-api.flipkart.net/oauth-register/login ”中为沙盒创建应用程序 ID 和密码。不要存储访问令牌,它会在特定时间段内过期。

api 文档的链接 - “ https://seller.flipkart.com/api-docs/fmsapi_index.html

于 2016-04-21T10:48:05.530 回答