0
votes
2answers
24 views

OAuthException: This authorization code has been used

I have facebook application where I have used php CURL for authorization and to get access token and facebook user id. I have following code for allowing user access: function AlowUserAccess() { ...
0
votes
1answer
31 views

get content from facebook url using php

How to get content from facebook url and extract facebook user id and access token. I have used CURL and it's returning empty content. $url = ...
0
votes
0answers
30 views

what is Review object in facebook graph API & how do I post it

I have implemented some of the facebook features using curl and facebook graph APIs as mentioned in the developer website. I am able to post and upload photos. During the course of adding other ...
1
vote
0answers
222 views

graph.facebook.com/me?access_token=<token> returns “Cannot call API on behalf of this user”

Receiving an OAuthException when: curl https://graph.facebook.com/me?access_token= but only when I curl from my AWS-based web server. If I run the exact same command from my local machine, it ...
0
votes
1answer
27 views

Removing dead facebok api tokens

I am trying to find a way to automatically validate multiple facebook access tokens at once. I am storing user access tokens into a txt file and (as expected) after some time some of the tokens will ...
0
votes
0answers
32 views

Facebook CurlException 3 No URL set

I am getting FacebookApiException Object ( [result:protected] => Array ( [error_code] => 3 [error] => Array ( [message] => No URL set! ...
0
votes
1answer
50 views

is there a legal & valid for facebook login using curl or some none browser (login popup) approach?

I am trying to make facebook application; But, my system will not have a browser support; And in order to write and use fb APP, getting access token the first thing that my app has to do is ask user ...
0
votes
1answer
50 views

Facebook Graph: Possible to upload photo to /user/account/album? If so, how?

I'm attempting to set up an app for a small set of known users, all of whom have a sub "page", "account" or whatever the terminology du jour is. The main goal of the app is to publish photos to these ...
0
votes
0answers
59 views

Latest Post Facebook page integration to website

<?php function fetchUrl($url){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 20); $feedData = ...
0
votes
1answer
85 views

CURL URL Invalid

I have a problem in my application, is showing the following message Warning: curl_setopt () [function.curl-setopt]: Invalid curl configuration option in / ...
0
votes
0answers
36 views

PHP CURL link url issue

Hi I'm investigating certain URL's not posting to facebook. Using PHP and cURL when adding a certain URL link string to the array the post will fail. I'm not sure if there is some kind of ...
0
votes
2answers
38 views

Posting using Curl and php link error

I'm having issues posting to facebook using php & cURL I have posted my code to pastebin http://pastebin.com/pQdXq0Pi The link is the issue. If I use the google shortened url the post doesn't ...
6
votes
1answer
258 views

Facebook curl like post request using open graph

I want to create the like button in my iOS app by using curl -X POST \ -F 'access_token=USER_ACCESS_TOKEN' \ -F 'object=OG_OBJECT_URL' \ https://graph.facebook.com/[User FB ID]/og .likes ...
-1
votes
1answer
48 views

Retrieving facebook order details

How can I get order details on facebook. When I send GET https://graph.facebook.com/[order_id] following error is displayed: { "error": { "message": "An access token is required to request this ...
0
votes
0answers
107 views

Stuck at PHP loop statement

I am developing a facebook application that updates users statuses automatically through the code below. I have about 52 k users in my database. The issue is when i run this code. It's taking too much ...
0
votes
1answer
158 views

Connect Fb through curl in php

i need to get user feeds from Facebook using curl , i have send request through curl and got Facebook returned HTTP Error Code: 404 error, follow is my code to connect facebook through curl ...
-2
votes
2answers
298 views

how to use cURL in facebook graph api request

I am getting the information to facebook graph api using file_get_contents() but sometimes I am receiving an error. I found out that cURL must be used instead of file_get_contents(). The problem ...
0
votes
0answers
231 views

Fatal error: Uncaught CurlException: 26: couldn't open file “” thrown in

<?php ob_start(); include("/home/coversco/public_html/include/config.php"); ini_set('display_errors', 1); error_reporting(E_ALL); require 'src/facebook.php'; $facebook = new Facebook(array( ...
0
votes
1answer
63 views

“via my application” isn't shown on most cell phones when my app posts to facebook

We have an app on Facebook. It posts quotes hourly on behalf of users even when they are offline. But when php script runs to post to users timeline i am actually facing 2 serious problems.Firstly and ...
0
votes
1answer
57 views

Posting a like via app on facebook only returns true and does nothing

I was trying to get the feeds of friends' fan pages with a cURL and to post a like via app. The cURL GET works fine, but when it comes to liking the object (that has for sure likes enabled because ...
0
votes
0answers
301 views

OAuthException: Invalid OAuth access token signature

When i type this url direct into browser i get the post sent to user feed wall https://graph.facebook.com/xx facebook uid xx/feed?access_token=xx app access token ...
0
votes
0answers
133 views

php facebook curl

iam having a weird problem , i have built an application on facebook using php , it stores the users id all permissions are ok to post to users wall while they are offline the following code works ...
1
vote
1answer
271 views

Curl SSL & Connection Timeout Intermittently in Facebook Graph API

i think my problem is totally different than rest questions on Stackoverflow. I searched and googled everywhere but dint find accurate solution or reason for it. Hope i get some information over here. ...
-2
votes
2answers
448 views

uploaded photo post to facebook album [closed]

when below form submitted the form action is set to $graph_url in my case when the album name, description, image database insertion operation completed after below code is executed i don't know how ...
-2
votes
1answer
64 views

php json decode curl_exec result of shared link on facebook

I use curl php to share link on facebook all is fine and I'VE got this result { "id": "the_link_id" }. I tried to got the id with: $result = curl_exec($ch); $json = json_decode($result); $post_id = ...
0
votes
3answers
200 views

curl php is very slow

I build the following script to like a facebook status using tokens the problem is the execution take too much time for 5 tokens it take >= 10 seconds foreach ($tokens as $token) { ...
1
vote
1answer
42 views

CURL https give an error

I am having trouble with this function. It works well with http but doesn't return anything when using https. I am working on facebook's url to fetch all public groups post. function fetchUrl($url) { ...
0
votes
1answer
211 views

php curl to download multiple photos as zip from facebook not working

I'm using curl to fetch photos from Facebook url for authorized user, for each photo I'm adding it to a zip file to allow user to download whole album as zip. if( !isset($_GET['id']) ) die("No ...
0
votes
2answers
217 views

“Cannot send session cache limiter - headers already sent” error occurs after solving “Connection timeout” error

In my app, CURL was timing out and thus resulting the error: CurlException: 28: Connection time-out So, I increased the CURLOPT_CONNECTTIMEOUT value in base_facebook.php from 10 to 30. After that, ...
0
votes
2answers
258 views

PHP script to Curl Facebook Linter Url

I have been looking for a script in php to Curl the facebook linter URL so it forces Facebook to scrape my page again to update my open graph data.
0
votes
1answer
803 views

Fatal error: Uncaught CurlException: 7: couldn't connect to host thrown in

Yesterday was fine, but today, suddenly, my web app report an error while accessing Facebook PHP API. At first, the error was connection time out. So, I added the time in base_facebook.php, changed ...
0
votes
0answers
153 views

code to post a user generated photo on facebook

I have been trying to post a user generated photo on Facebook. I could do it successfully on the graph explorer, and through a simple HTML form. But have been having a really tough time integrating ...
1
vote
2answers
153 views

Get Data With cURL

$args = array( 'access_token' => 'xxxxxxx' ); $url = "https://graph.facebook.com/me/friends"; $ch=curl_init(); curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_POSTFIELDS, $args); ...
0
votes
2answers
241 views

querying the graph api with curl

I want to check how to handle the access_token. So, I use curl to perform the following queries: curl -X POST https://graph.facebook.com/oauth/access_token -d ...
0
votes
1answer
204 views

making post hidden with graph api

i have post created calling graph api https://graph.facebook.com/me/feed/?access_token=<token> it returns somthing like: {"id":"<UID>_<POST_ID>"} now i want to hide this post by ...
0
votes
1answer
187 views

Using curl to use the build in Facebook like

Im trying to create the build in like button from facebook, but now facebook requieres to use the curl system, and onces i created the action, facebook gives me this code: curl -F ...
0
votes
0answers
70 views

Strange character when posting to Facebook

Similar: Facebook post to wall £ shows up as special character I'm posting to a Facebook wall using curl, straight a shell script using this code: fbResult=`curl \ -F ...
0
votes
0answers
211 views

Sometimes Curl & file_get_contents doesnt download image from Facebook

I am been facing an issue while downloading or fetching images from Facebook to my app. Last 6 months it was working perfectly, now its started to make problem. I tried using Curl and even ...
1
vote
3answers
595 views

file_get_contents is not able to read image from facebook image url

I have got an image url from facebook: https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak-prn1/s720x720/156510_443901075651849_1975839315_n.jpg I need to save this in my local. when i used ...
0
votes
1answer
285 views

How to send a notification with cURL?

After a lot of researches, I solved all the errors I got trying to send a notification from my app to the current user. But now, no more errors, but a blank answer. I use the following code : ...
0
votes
1answer
162 views

Facebook : Post in user wall without SDK

I use below code to post in user wall ,without SDK, it posts successfully , but its not returning the post id , please help me <?php $token=$_GET['token']; $id=$_GET['id']; $msg = "wooow thats ...
0
votes
1answer
36 views

Send picture to Page Event

I've seen this question asked and answered all over the web, however none of the answers have worked for me. Either it must mean they're outdated or incorrect. Basicly I've managed to make a script ...
-1
votes
2answers
171 views

how to make facebook graph api curl request in ruby

From facebook graph api docs this is curl request i need to make. From console its working. Now I want to move this post in delayed job. How can I do this: curl -F 'access_token=xxxxxxxxx' \ -F ...
-1
votes
1answer
87 views

getting no user's friend which are using specific app?

I am logged in, I have access token. I have authorization for app. I wants to retrieve the user's friends which are using this app(Specific) app. If i am running URL with fql and with access_token in ...
1
vote
1answer
747 views

Facebook Graph API - Post a remote image to an album

At the moment I have to download images on the server and post them like this: $photo = array( 'message' => 'Status', 'source' => '@/full/path/of/the/image.png' ); $response = ...
0
votes
1answer
419 views

Getting just the Location from Header of cURL Request

I'm trying to retrieve the location URL of an image after a redirect, but I can't seem to get it to work. I've never used cURL before, but from the research I've done it looks like I need it to get an ...
1
vote
2answers
495 views

Delete pictures from Facebook using CURL

I have a Facebook app, where I want to delete some pictures. I have the pictureid and access_token, and have tried every methods I have found on this site, but I get errors every time. How can this ...
0
votes
1answer
2k views

Automatic login to Facebook with cron/cURL

I've seen so many solutions for this but haven't been able to implement any of them sucessfully. I have created an App in Facebook and can successfully use FQL to retrieve data. I will be pulling in ...
6
votes
5answers
676 views

Facebook graph extremely slow in PHP

Whether using the Facebook PHP SDK, or just loading data using curl with $contents = file_get_contents("https://graph.facebook.com/$id?access_token=$accessToken"), it takes around a whole second for ...
0
votes
1answer
176 views

Is it possible to revalidate a expired access token without using any facebook sdk?

I use c++ and libcurl to interact with face book. I'm make a native windows application,so I can't use any facebook sdk. Can I handle expired/invalidate access token by using graph api?

1 2