Facebook's JavaScript SDK provides a rich set of client-side functionality for accessing Facebook's server-side API calls. It can collaborate with any SDK like PHP, C#, Java, android, ios, etc
0
votes
0answers
6 views
facebook permissions dynamically
I am working on a Facebook app. The facebook app requests some basic info from the user and asks the user for permission. However, I wish this to be dynamic. So, the user first checks off what he is ...
0
votes
0answers
5 views
How can i share images from my local application to facebook
i try to build application to to allow the user to post (text,images,videos) in a wall.
how can i share images from my application(located in wamp local server), to facebook, without the need to ask ...
0
votes
1answer
32 views
JSON ASP.NET Deserialization failing, getting null
From Javascript I send my object via string like so, data is what facebook FQL query returns:
var propData = new Object();
propData.d = data;
var jString = JSON.stringify(propData);
...
0
votes
0answers
16 views
FB.getLoginStatus, FB.logout, FB.login not working fine
FB.getLoginStatus, FB.logout, FB.login not working fine.
in chrome browser with following code it works fine for one time after clicking again
on Connect/Mocdify button popup doesn't appears.
and in ...
-1
votes
0answers
14 views
Can I generate multiple access tokens in facebook for a single user?
Can I generate multiple access tokens for a single user in facebook for a particular specific application?
For example for the same application, can I generate multiple access tokens for a single ...
0
votes
0answers
9 views
Facebook Like Box social plugin doesn't work with Turbolinks
I'm using the Like Box social plugin (https://developers.facebook.com/docs/reference/plugins/like-box/) and it works great.
Problem is that I'm using it within a Rails 4 application with Turbolinks. ...
0
votes
0answers
21 views
Facebook Like plugin - IE pop-up fails
I'm using Facebook's Like plugin, but it doesn't work anymore in IE when the user is not logged in.
In both Chrome and Firefox if a user is not logged into Facebook and clicks on the Like button, a ...
0
votes
2answers
22 views
Facebook Graph API - Get profile picture prior to authenticating
Ok so i've tried the following:
FB.api("/me", {fields: "picture"}, function(response){
console.log(response);
});
And i'm trying to work around ...
0
votes
1answer
29 views
How to use facebook php sdk in google app engine?
I am trying to use facebook php sdk in my app engine php application. But it gets an error.
when i use the statement require 'facebook.php' , it generates an error with the message-
Facebook ...
0
votes
0answers
25 views
having trouble sending facebook notification via ajax call to php
In my javascript I have a click event that triggers an ajax call to the php page where I send my notification from. I chose to do it this way because the documentation advises against using your app ...
0
votes
0answers
13 views
Using Facebook API to allow users to tag themselves in a photo
We're looking to create an application on a mini-site that contains a large image with thousands of people in it. We then want to invite visitors to find themselves in the crowd.
Once they've ...
0
votes
0answers
8 views
Clarification on manage_pages permission and page tokens in javascript sdk
In my code I want the user to be able to post to the page for my app. I'm the only admin for that page since it is mine. When the documentation says I need the manage_pages permissions so a user can ...
2
votes
1answer
25 views
Facebook Canvas: Can't redirect in javascript
I am working on this seemingly trivial problem since three days and ran completely out of ideas why my code doesn't work.
In a nutshell, when the user receives a facebook request and clicks on it, it ...
0
votes
0answers
10 views
First integralção with facebook (login)
I'm trying my first integration with facebook, using facebook login.
This is the code I'm writing for tests.
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="utf-8">
...
0
votes
0answers
15 views
How to verify a story is posted to a user's Facebook timeline without using Graph API
I'm using FB.ui method in Facebook JavaScript SDK to trigger feed dialog which allows user to post a story to their timeline. I want to keep track of number of stories a user posted on their Facebook ...