Facebook 签到 - 如何使用phonegap-facebook 插件做到这一点?

发布于 2024-12-15 12:52:55 字数 738 浏览 1 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清君侧 2024-12-22 12:52:55

如果您复制粘贴代码 - 那么只需将“-”添加到 PlaceID ant 就可以了

If you copy paste the code - so just add "-" to the PlaceID ant it should work

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文