我在facebook上有一个本机应用程序。我尝试使用以下标题格式发布到用户墙
https://graph.facebook.com/100002944254185/feed?message=today
授权:OAuth oauth_version = 1.0,oauth_nonce = 5887e5b11904194f7d217e9b7f795d62,oauth_timestamp = 1317623602,
oauth_consumer_key = 129042607197622,
oauth_token = AAAB1XRLDTbYBAIfcTKw3mowkwjld89A4K7JVQHZAOM60Tmb8za6wjNq8sPTuHhiAVojKyXm9r1SB3OWlSkKWI2sn9lSAwQGE0giA0UTgCfgXcd0ZCe,oauth_signature_method = HMAC-SHA1,
oauth_signature = GKL%2Bvf3Vaq25XY7dTnb%2FJg3fip8%3D
内容类型:application / X-WWW-form-urlencoded
执行错误时
HTTP / 1.1 400错误请求
任何人都可以说这意味着什么?
答案 0 :(得分:3)
而不是https://graph.facebook.com/100002944254185/feed?message=today,然后是它下面的凌乱的授权标签,只需将access_token附加到https调用的查询字符串上,使其看起来像https://graph.facebook.com/100002944254185/feed?message=today&access_token=xxxx和HTTP Post那样。