I think I'm going crazy. I can't get it to work. I simply want to check if a user has liked my page with javascript in an iFrame app. FB.api({ method: "pages.isFan", page_id: my_page_id, }, function(response) {...
Is it possible to upload a file using the Facebook Graph API using javascript, I feel like I'm close. I'm using the following JavaScript var params = {}; params['message'] = 'PicRolled'; params['source'] = '@...
I'm writing a Google Chrome extension which manipulates the current page (basically adds a button). In my content script, I want to load the Facebook Graph API: $fbDiv = $(document.createElement('div')).attr('id', 'fb-root...
I'm trying to upload a base64 image to a FaceBook page using Node.js. I have managed to get the upload working with all the multipart data etc should I read the file from the filesystem (ie. using fs.readFileSync('c:\a.jpg') However, s...
I have a like button on my website (which is for users to like the fb fan page). If the user clicks like, I check to see if the even has been fired (event subscribe), and then display some content to them. What I would really appreciate help with i...
I'm wondering if its possible to programmatically discover all the endpoints of a particular API. So for example if I GET this URL with a browser or curl: https://api.twitter.com/1.1/ I might get something like this as a JSON response: {"...
I'm using Node.js: var s = 'Who\'s that girl?'; var url = 'http://graph.facebook.com/?text=' + encodeURIComponent(s); request(url, POST, ...) This does not work! And Facebook cuts off my text... Full code: function postT...
Facebook deprecated FB.Data.waitOn and FB.Data.query and they recommend we use FB.api instead. More info: http://developers.facebook.com/blog/post/561/ This sounds easy enough, but I can't seem to pass additional parameters with my FQL reque...
Facebook connect.js js api cannot work with a home screen webapps when using meta name="apple-mobile-web-app-capable" content="yes" (to remove all mobile safari ui) After it authenticates I am left with a white screen, I guess becaus...
I have the facebook application with approved ads_read, manage_pages ads_management, business_management and Ads Management Standard Access permissions. I can create Ad campaign, ad set and can upload asset to Facebook via Facebook Marketing API. Bu...
©2020 All rights reserved.