Hello-
I am working on an app which will upload videos to a Facebook users wall, however I have not had much success. I present an extended permissions dialog window, and then use the face.video.upload method call. In the debugger, it seems like each parameter is set correctly, however the ext permission dialog never completely displays,...
Is it possible to fetch the "likes" data from a user's profile using the old rest api ? Specifically FB has launched this new "Likes" feature recently, where a user can Like a page, etc. This information is visible under the "interests and likes" section of the Info page of a user. I am looking for a way to fetch this information using ...
I can't find any documentation in the new Facebook Graph/Authorization API documentation about how to handle post-remove callbacks from the Facebook server.
With the REST API, this page described how to handle this.
Any ideas on how to do this with the new PHP SDK?
Do we need to do the signature verification ourselves? What's the equi...
Hi. I am wondering how to set the status of a user who has allowed offline access permissions. I have the users ID and access token but can't figure out how to pass both to the function. Any ideas?
...
My users have allowed offline access. I have the infinite access token, but can't figure out how to update the status from a cron job.
Any ideas?
...
Anyone know if there is a new way in the new API to set the user? I'm getting the error, Call to undefined method Facebook::setUser(). I cant find anything on Google.
...
I have offline access to post on a users wall, but before I post, is it possible to check if I actually have permission i.e. by verifying the access token or by using another solution?
Sometimes I am getting "Error processing Access Token" which makes me think the user has removed the application or denied access to post on their wall.
...
Hi! I have downloaded a Wordpress plugin that enables facebook Connect in my site, allowing users to "comment out" and "like" the posts and photos.
As most of users are already logged in facebook when they reach our site, is it possible to let them tag their friends in the photos, and save that information so people can later see the na...
Hi overflowers,
I try to get the sfFacebookConnectPlugin to run by following the tutorial on the symfony homepage.
Everything seems well configured. But when I try to login with sfFacebookConnectAuth/signin.
I get the form error "The username and/or password is invalid.".
I even don't know where to start with the debugging.
First Ste...
when i click the login button, i get the following javascript error:
FB.getLoginStatus is not a function
[Break on this error] FB.getLoginStatus(function(response) {
here's my code:
<script type="text/javascript">
<!--
$(document).load(function() {
});
FB.init("56800990388df98bfe358812eb6caf3d", "xd_receiver.htm");
...
I'm having problems trying to connect my website to Facebook. What I would like it to do is allow users to augment their accounts by connecting them to Facebook (I do not need people to be able to login with Facebook, I am using OpenID instead). My website runs in the CodeIgniter framework.
What I will do is remove everything that I've ...
i have been working tirelessly just to get this working, but for some reason, in the following code:
require_once 'facebook-php-sdk/src/facebook.php';
$facebook = new Facebook(FACEBOOK_API_KEY,FACEBOOK_SECRET);
$fb_user = $facebook->getUser();
the variable $fb_user is always null! i was wondering what i am missing in order to get th...
Using the Facebook Graph API I need a way to get the fan page id using that page created "user id".
Is it possible?
...
Hello all,
I'm looking to be able to remove a post with Connect.js. This is what I've tried so far:
FB.ui({
method: 'stream.remove',
post_id: post_id
},
function(response) {
console.log(response);
});
I get a '"stream.remove" is an unknown method.' which is correct because when you look in the ui_methods.js file for Connect.js onl...
Hello.
I would like to know how to set my status using the Facebook Graph API and PHP, may be with the CURL function??
Thanks!!
...
In the past, I've been able to upload images and text to Facebook from within my iPhone application, but I have not been able to upload video. Does anyone know how to programmatically upload video to Facebook?
...
I am integrating facebook social plugin into our web site. I follow This guide line. But one of my requirement is that I should be able to post message to user’s inbox not to wall. Is it possible JavascriptSDK and GraphAPI?
Thanks.
...
//if user is logged in - do this
function login() {
FB.api('/me', function(response) {
document.getElementById('fb-info-block').innerHTML =
"Welcome, " + response.name + ".<br /><br />" +
"<fb:like href = 'www.whitbreaddesign.com' show_faces = 'false' width = '100' action = 'like' colorscheme = 'light'></...
I'm building a page using Facebook Connect, and the interaction in relation to Login/Logout is quite complex. Thus, I have to test it quite a bit. However, Facebook likes to prevent my login after a particular number of attempts, especially if I've mistyped my password at any point.
Does anybody out there know if there's a way to increa...
Hey guys
Yesterday I changed the application settings and enabled "New Data Permissions" and "New SDKs".
After that the feature of posting message to the users wall stopped working. On my website, users login using facebook API (Graph) and are able to post messages on their wall.
This is my old code that was working fine:
function p...