When i try to get an access_token from plurk API i recive "Bad Request 40007:missing request token"
I create curl request like in example on plurk Docs
$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);
i cant understand whot is the "request token" means.