0

遵循以下说明时,我有点卡在验证我的应用程序并获得访问令牌:http: //developers.flattr.net/v2/

第 1 步,验证工作正常。我取回了代码,我的应用程序在我的设置/应用程序中列出了正确的范围。

然后我尝试通过以下 curl 命令获取访问令牌:

curl -v --user MY_KEY:MY_SECRET -H "Content-Type: application/json"\
-X POST -d '{"grant_type": "authorization_code",\
"redirect_uri": "http://localhost/", "code": "MY_CODE"}'\
https://flattr.com/oauth/token

不幸的是我总是得到“invalid_request”

< HTTP/1.1 400 Bad Request
< Strict-Transport-Security: max-age=500
< Set-Cookie: PHPSESSID=d9972s9r5a7t4p0ch4chc4dqh2; path=/; domain=.flattr.com; HttpOnly
< Expires: Thu, 19 Nov 1981 08:52:00 GMT
< Cache-Control: no-store
< Pragma: no-cache
< Content-Type: application/json; charset=utf-8
< Content-Length: 291
< Connection: close
< Date: Wed, 16 Nov 2011 22:38:30 GMT
< Server: lighttpd
< 
* Closing connection #0
* SSLv3, TLS alert, Client hello (1):
{"error":"invalid_request","error_description":"The request is missing a required parameter, includes an unsupported parameter or parameter value, repeats a parameter, includes multiple credentials, utilizes more than one mechanism for authenticating the client, or is otherwise malformed."}

谢谢!

4

1 回答 1

0

我在这个过程中发现了一个错误,现在它被粉碎了。如果您再次尝试请求,应该可以顺利运行!

于 2011-11-17T06:35:12.530 回答