Tagged Questions
-3
votes
1answer
22 views
how can i get the real code of this hex code [closed]
how can i get the real code of this hex code
var ...
0
votes
0answers
12 views
Passing in content to Facebook share button
Can I actuallly pass in values $(this).val() to
"https://www.facebook.com/sharer/sharer.php?u=";
to share content message?
0
votes
0answers
20 views
sending note from facebook app
I'm trying to build an app that post notes to user's timeline or send notes to users
as I read until now I know that its impossible to send posts or messages to users by apps
is that the same for ...
-1
votes
0answers
16 views
Node js facebook api can't POST
I have a problem implementing amachang's https://github.com/amachang/facebook-node-sdk facebook-node-sdk in my express node.js application , i putted the same code in the example with the modification ...
0
votes
0answers
19 views
Facebook Graph API: Post Field: message “undefined”
Hope you could help me. I'm searching for quite long right now, but can't find a solution to that.
I'm using the Graph API of Facebook with the JavaScript SDK and all I want is to get the posts of an ...
-2
votes
1answer
29 views
Facebook Connect - Need email and userlikes
I can't seem to get the permissions for my facebook connection. Here's what I have:
window.fbAsyncInit = function() {
FB.init({
appId : 'myID', // App ID
channelUrl : ...
-2
votes
0answers
13 views
How to know if user came from facebook app invitation or not , and who invited him? [closed]
i need your help in this case please.
How to know if user came from facebook app invitation or not , and who invited him ?
0
votes
1answer
26 views
Having trouble parsing JSON, returned from Facebook Request, javascript
I am making a rest call to the facebook API. When I process the response in the following way.
$("#fb-root").append(JSON.stringify(response));
I get the string:
[{
"code": 200,
...
0
votes
0answers
11 views
Facebook FQL query fails depending on information asked
I want to retrieve the text of a specific comment using Facebook fql in JavaScript.
function getInfo(commentID){
FB.api("/fql?q=SELECT text FROM comment WHERE id IN ("+commentID+")", ...
0
votes
1answer
76 views
The url you supplied is invalid, type OAuthException with javascript sdk. code 1500
I'm trying to post to Facebook wall using FB.api(
'/me/feed',
'post',
I'm getting the error
/**/ ...
0
votes
1answer
47 views
Getting Friends Likes and Information using Graph API
I am having trouble getting a user's friends' likes.
I can get gender, name and birthday, but not television, movies, music,books, games and likes.
Note, the user selects a friend, and then the ...
0
votes
1answer
13 views
Facebook App - Publish notes to timeline publically
I've got an app that posts notes to a users timeline. I have the code working just fine, but I can't seem to get the notes to be public on the timeline.
I've added just about every permission (via ...
0
votes
3answers
47 views
facebook access_tokens in php and js diffeerent?
I am going crazy here,
i dont understand how facebook handles the token thing. I use php sdk for web login. This works, i can get with
$facebook->api('/me');
the data from user etc.
But after ...
1
vote
1answer
43 views
Facebook Graph API returns object with missing data
I'm currently trying to get the total number of "likes" from a post. If I query the post via the Graph API Exporer, the data is there under likes.data.count. From my javascript application, the ...
0
votes
1answer
17 views
Facebook like actions - Check if URL is liked
I've read the documentation about like actions, but can't get this to work.
I'm trying to get a status if a logged in user is liking an URL with the Javascript SDK. But doesn't get any progress.
How ...