当我尝试access_token
从 plurk API 获取时,我收到错误
错误请求 40007:缺少请求令牌
我在 plurk Docs 上创建 curl 请求,例如
$params = array( "oauth_consumer_key"=>"xxxxxx", "oauth_nonce"=>md5(time()), "oauth_signature_method"=>"HMAC-SHA1", "oauth_signature"=>$sig, "oauth_timestamp"=>time(), "oauth_version"=>"1.0", "oauth_token"=>$request->getParameter("oauth_token"), "oauth_verifier"=>$request->getParameter("oauth_verifier"),
);
$url = "http://www.plurk.com/OAuth/access_token";
$res = Common::getCurlRequest($url, $params);
我不明白“请求令牌”是什么意思?