Hi Guys,
I've integrated my website with Facebook Connect, authorization/single-sign on all working great.
Now im trying to post something to the user's wall, which im having some problems with.
First of all, im using the "old" JavaScript API (FeatureLoader.js).
These are the Graph API URL's im using:
private const string UserDeta...
Hi everyone. I am using facebookdjango, with
@decorator_from_middleware(FacebookMiddleware)
@facebook.require_login()
decorators, which always redirect to the facebook canvas page, I wonder if I can be "canvasless"? Thanks.
...
I am having difficulty accessing the returned JSON response data from the new Facebook JS SDK new Graph API calls.
For instance, in some of their docs where they are using the old way of using the SDK , they get a pointer to the data by response[0]
but here, it's showing that you need to use response.data[0] instead: http://developers....
I'm trying to implement an XFBML comment box on a page. It works in FF and Chrome, but only sporadically in IE8.
I get an 'FB' is undefined error when the page hits the FB.XFBML.parse('fb-stuff'); Do I need to check if the FB Connect script has finished loading before I try to parse the XFBML?
<script type="text/javascript">
window....
Is it possible to allow a user wishing to login through facebook in my site use a screen from my website, and not the popup provided by facebook.
Regards,
Pankaj
...
Hey,
well I'm new to the facebook api stuff, and just recently someone told me I was using the old api.
So now, I can't seem to figure out how to check if the user is logged into my site with the new api.
all I really have is
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
...
Hi Guys,
I'm posting some info to a user's wall via Facebook Connect (from my external website).
All working good, but i've noticed some differences in the documentation for wall posts in the Graph API and the Old JavaScript SDK.
With the Graph API, to post to a user's wall you do the following:
Make a HTTP POST to https://graph.fac...
Is there anyway to retrieve photos ordered by the number of likes in FQL?
...
Hi Wonder what the problem is >.<
Unsafe JavaScript attempt to access frame with URL http://forums.mysite.com/interface/facebook/xd_receiver.php#%7B%22id%22%3A0%2C%22sc%22%3A%22http%3A%2F%2Fwww.facebook.com%2Fxd_receiver_v0.4.php%22%2C%22sf%22%3A%22loginStatus%22%2C%22sr%22%3A2%2C%22h%22%3A%22loginServer%22%2C%22sid%22%3A%220.695%22%2C%...
i am creating a website that will intially have an invitation-only functionality.
i.e. a user gets an invitation with a special url that they can use to sign up.
to login on the website i use facebook connect.
to send beta invitations, the user can see his facebook friends, and select which users he wants to send the special urls to (e...
Hi,
I've been able to get my app to login and grant permissions after, but I woul dnow like to do it at the same time
The login button that is being generated is using the following code
<fb:login-button perms="publish_stream"></fb:login-button>
Any ideas why its not picking up on the perms?
Thanks,
Ian
...
Hey,
on my site right now I'm trying to have it post to a users wall a media file.
I had it working on the old api before, but now I'm trying to get it working on the new one and I'm having an issue.
I'm running this
$facebook->api_client->stream_publish($message, $attachment, $action_links);
Is that the old api or the new one? Bec...
Hi,
Right now I'm trying to figure out how to post an attachment using facebooks graph api.
Right now I'm using
$attachment = array(
'message' => $_POST['tt'],
'text' => 'Download',
'name' => 'name',
'href' => 'http://www.url.com',
'descrip...
I incorporated MGTwitterEngine in my iPhone app, with basic authentication, and have since incorporated Facebook Connect's classes for iPhone. I'm now trying to move to XAuth with MGTwitterEngine and OAuthConsumer, and I would like the user to have the same flow when tweeting as when posting on Facebook.
With Facebook Connect, I can use...
I'm planning to write an iPhone app that does not require user to register. However, I would like to associate all registered user with at least an email so that I can send them email notifications when needed.
OpenID - seems to do what I need, but
it doesn't work well on an installed
app (unless I use... WebView? Even
that is not us...
Is there a callback or another way to track whether or not someone successfully shared something using the share button?
...
Hi Guys,
I have a Facebook Connect application (IFrame, external website).
When i post to the user's wall using the Old JavaScript API (FB.Connect.streamPublish), im specifying action links, as many people do.
Here's the JSON for my action link:
[{ 'text':'Do something on my site', 'href':'http://www.mysite.com/somerestfulpath' }]
...
StackOverflow does openid well and Quora does the Facebook connect and Twitter well....but one problem I had with Quora is that I can either login with my Facebook or Twitter account, but not both, so there is no way to import friends from both under the same account. Which is what lead me to ask here, in case there are other sites with...
I got Facebook Connect working and all and it's loading up the user's friends list with perfection. So now I have the logged in user's UID and the friend's UID. How would I go about calling their users.getInfo method from the SDK? The example below is what they give me to set a status, but I don't know how I can transform it to work with...
I have an implementation for my website to have facebook single sign on, using their javascript sdk.
The javascript adds the cookie and I deal with it fine.
The question is related to when an user logs out of facebook, I would expect the auth.sessionChange or auth.logout events to fire, but that only occurs when the page is refreshed.
...