facebook-graph-api

Reload fb:comments widget

北战南征 提交于 2020-01-21 08:27:09
问题 I have a Facebook App that allows people to create "Posters". Every "Poster" can be commented on using fb:comments widget. User can switch between posters using AJAX. The problem is that after switching to next poster fb:comments widget is still pointing to previous URL. Is there a way to "reload" a widget for a new url? 回答1: Ok, solved this by myself, leaving it here for reference. If you want to reload fb:comments widget it's as simple as that: // xid can only contain a-zA-Z0-9_%.- comments

Reload fb:comments widget

ぃ、小莉子 提交于 2020-01-21 08:26:05
问题 I have a Facebook App that allows people to create "Posters". Every "Poster" can be commented on using fb:comments widget. User can switch between posters using AJAX. The problem is that after switching to next poster fb:comments widget is still pointing to previous URL. Is there a way to "reload" a widget for a new url? 回答1: Ok, solved this by myself, leaving it here for reference. If you want to reload fb:comments widget it's as simple as that: // xid can only contain a-zA-Z0-9_%.- comments

Facebook API limits

拥有回忆 提交于 2020-01-21 08:13:28
问题 I'm using the Facebook Graph and FQL API from an application (OAuth authenticated). I've been unable to find anything about rate limiting/throttling in the documentation. Normally, I'd expect some kind of limit in class/user... Looking in at the Facebook app page Insigths -> Diagnostics: PI Throttling None during specified period. API Throttling Warnings None during specified period. Feature Limits Feature limit per user, per day Requests 1.0 20 Which indicates some kind of throttling may be

Facebook API limits

让人想犯罪 __ 提交于 2020-01-21 08:12:03
问题 I'm using the Facebook Graph and FQL API from an application (OAuth authenticated). I've been unable to find anything about rate limiting/throttling in the documentation. Normally, I'd expect some kind of limit in class/user... Looking in at the Facebook app page Insigths -> Diagnostics: PI Throttling None during specified period. API Throttling Warnings None during specified period. Feature Limits Feature limit per user, per day Requests 1.0 20 Which indicates some kind of throttling may be

trying to pull the number of likes from a facebook fanpage using JSONP and JQuery

懵懂的女人 提交于 2020-01-21 06:03:31
问题 So I'm trying to pull and print just the number of "likes" a certain fanpage has, after doing some research - I found that this should work, but its not pulling anything. Any help? <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript"> function fbFetch(){ //Set Url of JSON data from the facebook graph api. make sure callback is set with a '?' to overcome the cross domain problems with JSON var url = "https

Posting image from .NET to Facebook wall using the Graph API

六眼飞鱼酱① 提交于 2020-01-21 04:59:04
问题 I'm using the Facebooks Javascript API to develop an application that will need to be able to post an image to a users wall. That part of the app needs to be server-side as far as I can tell, since it needs to post the image data as "multipart/form-data". Note: It's not the simple version using "post", but the real "photos" method. http://graph.facebook.com/me/photos I think I'm facing two problems, a .NET and a Facebook problem: Facebook problem: I'm not quite sure if all parameters should

iPhone Facebook Graph API library

时光怂恿深爱的人放手 提交于 2020-01-20 19:51:11
问题 Is there an library for the iPhone using the new Facebook Graph API yet? 回答1: This library is great: http://www.capturetheconversation.com/technology/iphone-facebook-oauth-2-0-and-the-graph-api-a-tutorial-part-2 I am using it with great success in a current iPad project. Update: Author just posted code to github: http://github.com/reallylongaddress/iPhone-Facebook-Graph-API Update: Please check https://github.com/reallylongaddress/iPhone-Facebook-Graph-API/issues/4 if you find post to FB

iPhone Facebook Graph API library

时光怂恿深爱的人放手 提交于 2020-01-20 19:48:59
问题 Is there an library for the iPhone using the new Facebook Graph API yet? 回答1: This library is great: http://www.capturetheconversation.com/technology/iphone-facebook-oauth-2-0-and-the-graph-api-a-tutorial-part-2 I am using it with great success in a current iPad project. Update: Author just posted code to github: http://github.com/reallylongaddress/iPhone-Facebook-Graph-API Update: Please check https://github.com/reallylongaddress/iPhone-Facebook-Graph-API/issues/4 if you find post to FB

Is it possible to use Object type image in facebook app?

限于喜欢 提交于 2020-01-20 09:25:50
问题 When I try and specify a object type of image for my facebook app, it says that it is reserved... so my question is how do i go about creating this object type... or do I not create an object type and use og type article for all my media types... kind regards to any repsonders... J 回答1: You may create whatever types you want within your application namespace (see Configuring Object Types) and later use that in your OpenGraph tags: <meta property="og:type" content="your-og-app:your-type"> If

Is it possible to use Object type image in facebook app?

我们两清 提交于 2020-01-20 09:18:29
问题 When I try and specify a object type of image for my facebook app, it says that it is reserved... so my question is how do i go about creating this object type... or do I not create an object type and use og type article for all my media types... kind regards to any repsonders... J 回答1: You may create whatever types you want within your application namespace (see Configuring Object Types) and later use that in your OpenGraph tags: <meta property="og:type" content="your-og-app:your-type"> If