Facebook 签到 - 如何使用phonegap-facebook 插件做到这一点?
我想在 Facebook 中设置“签到”操作。 我在 js 中使用 facebook sdk。
据我了解,我尝试了这段代码:
coordinate={"latitude":"32.063481280000005","longitude":"34.780804880000005"};
data={};
data["place"]=110506962309835;
data["access_token"]="AAAEEQRbEjlMBAAMoUhRk0biTLYrvD3e7upbZBOjhxgJaiZA4OyxFxtKaRryqta3WxLCYShb2SbLt7maOtoSfdGC5dnpxmOdccsbU9WJQZDZD";
data["coordinates"]=coordinate.toString();
data["message"]="GOOD!!!!!!!!!!!!!!!!";
data["tags"]="100002114388756";
url="https://graph.facebook.com/me/checkins";
xmlhttp.open("POST",url,true);
xmlhttp.send(data);
并收到错误:
{
"error": {
"message": "(#100) The parameter place is required",
"type": "OAuthException"
}
}
我应该怎么做?
I want to set "checkin" action in facebook.
I work with facebook sdk in js.
As I understood, I tried this code:
coordinate={"latitude":"32.063481280000005","longitude":"34.780804880000005"};
data={};
data["place"]=110506962309835;
data["access_token"]="AAAEEQRbEjlMBAAMoUhRk0biTLYrvD3e7upbZBOjhxgJaiZA4OyxFxtKaRryqta3WxLCYShb2SbLt7maOtoSfdGC5dnpxmOdccsbU9WJQZDZD";
data["coordinates"]=coordinate.toString();
data["message"]="GOOD!!!!!!!!!!!!!!!!";
data["tags"]="100002114388756";
url="https://graph.facebook.com/me/checkins";
xmlhttp.open("POST",url,true);
xmlhttp.send(data);
and get the error:
{
"error": {
"message": "(#100) The parameter place is required",
"type": "OAuthException"
}
}
How should I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您复制粘贴代码 - 那么只需将“-”添加到 PlaceID ant 就可以了
If you copy paste the code - so just add "-" to the PlaceID ant it should work