I have done the following steps here http://wiki.developers.facebook.com/index.php/How_Connect_Authentication_Works but I'm stuck at number 8. I've added the DLL's but for some reason this line:
API api = new API();
always comes up with this error:
Compiler Error Message: CS0246: The
type or namespace name 'API' could not
be ...
Hello,
As seen in this example:
http://apps.facebook.com/status-emoticon/
The application in question uses 'users.setStatus' to allow the publishing of small emoticons to the users status. The images are added to the post using colon tags which act similarly to BBCode.
How exactly is the application doing this? I would like to replica...
Hi all!
I've tried in vain to manage how to adapt the Like Button Plugin found at
http://developers.facebook.com/docs/reference/plugins/like
trying to make it works in do-like action on a picture instead of a page.
Can someone kindly tell if is this possible via the Open Graph protocol and metatags to like an album picture published ...
After successful authentication, Facebook redirects me to the canvas callback url with the parameter installed and session. the session parameter is like this...
&session=
{%22session_key%22%3A%222.cQWUqNcffzsWReDAcctOmA__.3600.1281524400-100000327994753%22%2C%22uid%22%3A100000327994753%2C%22expires%22%3A1281524400%2C%22secret%22%3A...
I am developing a facebook app and I seem to have got stuck on an issue.
I am trying to assign the username to a variable by calling the below code, but the variable is returning null.
var current_user ='';
var arUser = FB.Connect.get_loggedInUser();
FB.Facebook.apiClient.users_getInfo(arUser, ["name"],
function (user, exec)
{ //...
Hey,
I wanted to ask if/how is it possible to tag a photo using the FB API (Graph or REST).
I've managed to create an album and also to upload a photo in it, but I stuck on tagging.
I've got the permissions and the correct session key.
My code until now:
try {
$uid = $facebook->getUser();
$me = $facebook->ap...
I'm running a facebook Connect site where I use Connect for authentication. I check if the user is connected through facebook on every page so that I can quickly authenticate them if they are registered.
I think that my current way of doing this may be bad, because the page "hiccups" whenever it loads in users from facebook connect. T...
I have coded this little script, which upload a photo (images/hand.jpg) into a users profile in the default application album (in the app-album from witch im calling this script).
Now i have a problem.
I would like to get the unique pid (picture id) of the just uploaded photo.
When I try to echo $data, there is a int like this:
120629...
These sorts of facebook problems often become tumble weeds, but I thought I'd try anyway.
I'm wanting to create a facebook photo vote app with facebook connect. Photos in a certain facebook gallery will be displayed on a website with a like button next to it. They will be ordered by their number of likes.
I'm having trouble with the li...
I have a facebook connect app all set up using oauth and after the final
transaction I receive an access_token that looks something like -
559514387926|f53be3fc76b8e243aaf2944b-502835064|moXh_HOIga8b32txRdwkan-5NW9.
The part in bold seems to be facebook user id of the current user. I checked this
with all the access_tokens of the users...
Hi.
I'm currently using facebook to post text in the user's wall. I'm wondering if it's possible to post pictures, such as screenshots from my app for example, in the posts, because someone explained me that currently it's only possible to attach pictures from an URL to the post, and not any picture from the iphone.
It's also possible ...
What's causing this and what can I do to prevent it? I've seen a hack for solving this described here, but I'm wondering if there's a solution that actually gets to the root of the problem.
...
I have
$facebook->api_client->status_set('is the Eagle has landed.','');
as part of a test page, and i get errors
Call to undefined method FacebookRestClient::status_set()
please help, thank you
...
Hey!
I have a web page with Facebook connect.
Today i've checked it after a few days it was working, and i found out that if i connect using a username that didnt have permissions to my app, and he authorize them - he gets authorized.
if he connected again (with permissions already added) - i can't recognize his had authorized my app!!...
Hi,
I am trying to run the basic fb connect example provided here
http://developers.facebook.com/docs/guides/web#login
Everything works fine except page does not gets refreshes after log in.
How can I achieve that?
...
Hello,
I have two files with identical code (it is the code they mention here: http://developers.facebook.com/blog/post/198). I have one of these files here: http://gnucom.cc/test.html and another one of these files here: http://blog.gnucom.cc/test.html. I have the main URL set to gnucom.cc and the Connect URL set to http://blog.gnu...
Hey all,
I know this is a question that has been asked several times, but I'm receiving an error that I haven't found any documentation on and am not making any progress on this.
I have the Facebook Connect feature working on my blog, however, not everything is working. Upon clicking the 'Login' button a popup is displayed that allows...
I'm running a Django server on localhost:8000/ and have the facebook callback URL set to exactly that "http://localhost:8000/" however, when I log in, it redirects to "http://localhost/".
Is there a way around this? What am I doing wrong?
...
Sample code is appreciated. Thank you.
...
Two part question:
I have setup my website to use Facebook Connect for logging in. In the restricted area, I check if there is a cookie set with the name, "fbs_" under my domain name. However, I do not understand how this cookie gets set under my domain name. Does anyone know what happens with FB.Init call in this regard? (I have not us...