Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.