0
votes
0answers
11 views

Facebook Ad Campaign Budget Update Fails

We are able to update ad campaign name using Facebook Ads API, but when we are trying to update any budget for the same campaign, we are getting "User request limit reached" error. What may be the ...
0
votes
1answer
41 views

Using Curl with Cookie able to log into twitter etc but not facebook wordpress etc?

I'm using cUrl with cookies and user agents to log into several websites and fetch information. It's very convenient but it doesn't work for some websites. And I'm very curious about why. For example, ...
0
votes
2answers
44 views

how to transfer the curl command to http post request

I am using facebook object api to upload images to facebook staging service. api document is here http://developers.facebook.com/docs/opengraph/using-object-api/ in the doucement, it uses curl to ...
0
votes
0answers
90 views

Uncaught CurlException: 35: Unknown SSL protocol error in connection to graph.facebook.com:443

I keep getting this error, and it seems like it has appeared out of nowhere. I've been working at my project for some weeks, and this didn't show up until now. When I try to run my app on localhost, ...
1
vote
2answers
44 views

Scrape facebook fan page

I'm trying to scrape a facebook fanpage using curl in php but it just give's me a blank page. here is my code. function curlFunction($source_url){ $ch = curl_init(); $userAgent = 'Mozilla/5.0 ...
0
votes
0answers
54 views

Curl and Facebook album dosn't work

I have this code, but dosn't work and i can't understand why I tried different page id but all give me back THERE HAS BEEN AN ERROR: pageId invalid the strange thing is that it stopped working a few ...
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
37 views

Facebook albums request failure

I have some Facebook graph API integration on a website. Everything has been working fine for a couple of months until now. Basically, I perform curl requests in PHP to obtain albums. PHP aside, ...
0
votes
0answers
56 views

Sending Facebook Friend list to server

I have to send my Facebook friend list from my Cocos2d-x game to my php server. Currently how I'm doing this is sending it through my url. I append 50 friend id's at a time to my url and use the curl ...
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
171 views

Facebook needs the CURL extension

I'm trying to run my facebook php application on my apache server, on a new machine with Windows 64bit. As mentioned in the title, the error given is Facebook needs the CURL PHP extension. I have ...
0
votes
1answer
73 views

Error using json decode and curl to get or display data from facebook

<?php function curl($url){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); $data = curl_exec($ch); curl_close($ch); ...
0
votes
2answers
60 views

cURL issue with php

When i am tryin to manualy fetch a php page by passing URL, an exception is appearing which says javax.servlet.ServletException: java.lang.RuntimeException: PHP Fatal error: Uncaught exception ...
2
votes
0answers
91 views

Uncaught CURLEXCEPTION in facebook login - php sdk

Sometimes, especially, when I am not logged in Facebook, an error shows in my login page with the code pasted from the php-sdk. You can see the output at http://jnfp.tk/login.php. When I refresh the ...
0
votes
1answer
29 views

Issue with hyperlinks when pulling Facebook post into web page

I'm using the following script to pull the latest post from my Facebook page. It does this as expected, however, if the Facebook post contains a hyperlink, the link becames garbled & no longer ...
0
votes
0answers
49 views

facebook oauth getcode csrf https session not working

I have a site that is an https site with an nginx proxy in front of apache. I am having problems collecting profile information after a user has authenticated through the oauth dialog. This is the ...
0
votes
0answers
108 views

Facebook Post over curl on Group wall (i´m the Admin) per Cronjob

I've tried out many tutorials but so far had no success. I want to post in my group. So I have created a group and am an administrator there. Now I want when someone logs on one of my websites here ...
0
votes
0answers
61 views

Reading content in PHP from facebook url

I want to get content from the following URL: https://graph.facebook.com/[id]?access_token=[token] When I type the url in brower, the result is displayed. However when i try to get result in php ...
-1
votes
1answer
47 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
1answer
264 views

PHP Facebook graph API search cURL - no results

I've got a problem with the facebook graph API. I'm trying to do a search through the posts on facebook filtered on a keyword, but I can't seem to fetch the results. When I copy my url in a browser, ...
-1
votes
1answer
162 views

Facebook POST HTTP curl in PHP

Teaching myself some Facebook feed posting via PHP and I'm trying to figure out how I would execute this curl HTTP POST via the the PHP curl command, any suggestions? curl -X POST \ -F ...
0
votes
0answers
105 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
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
128 views

Scrape new page using opengraph and curl

I am developing a website in which i have created a blog, on that blog people can comment via their facebook. Now i noticed that whenever i create a new blog, the comments plugin shows a warning "url ...
0
votes
1answer
346 views

php can't load CURL in Windows 7 64-bit

So I've tried every solution I can find online and nothing seems to be working. I'm trying to get my first Facebook app off the ground. I'm running Apache 2.4. I installed PHP 5.4.11 manually to ...
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
282 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
131 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
265 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
425 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 ...
0
votes
1answer
97 views

cURL proxy treated as a phishing Website

I have seen many proxies being able to reach Facebook without any warning from the Antivirus. Why does this code below (which is working) is treated as a Phishing Website for Antivirus like Kaspersky? ...
1
vote
1answer
41 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
0answers
432 views

Retrieving Facebook Access Token doesn't work with curl or file_get_contents

This problem is really frustrating because I can see what's causing it but can't find a solution. When attempting to achieve a facebook access token first have my url: $token_url = ...
1
vote
1answer
183 views

cURL throws an exception at Facebook API SDK

I'm trying to post an image as the user from my Facebook application. Currently, this feaute is still under development, and when I'm trying to test it using WAMP server on Localhost, one of the cURL ...
4
votes
2answers
364 views

Https post request using curl : Android

I am trying to execute a https post request using curl. When I execute this request, I am neither getting any response nor any error or exception. Help or any clue about what's going wrong here is ...
0
votes
0answers
54 views

Is CURL with SSL required to make requests to Facebook via PHP?

I have an app which is working fine on my localhost, however on the server, requests to facebook API are failing. I did a phpinfo and while curl is enabled on the server, it doesn't say anything ...
0
votes
0answers
109 views

progress bar with post to facebook wall using curl()

i created an autopost application to post on my users wall and use curl method ,i'm asking to the ability to get progress of users have been posted $params = ...
0
votes
0answers
36 views

what's facebook post_form_id?

According to this post , I need to find out what's my post_form_id to send a message via post to facebook. It says that it can be found in any page on facebook, but I couldn't. What is this ...
0
votes
2answers
246 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
791 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
1answer
72 views

PHP Facebook Stream Undefined property Error?

I followed a tutorial on creating a facebook post stream for a website I created. The stream worked fine and has done for awhile now but I just checked the website again and it is now giving me a ...
1
vote
2answers
116 views

getting page from twitter or facebook anonymously by curl

I'm trying to make some kind of page parser (more specific - highlighting some words on pages) and i've got some problems with it. I'm getting whole page data from url using curl and most pages are ...
2
votes
1answer
168 views

Error 500 Internal Server when get data using CURL php?

$query = "https://api.facebook.com/method/fql.query?format=JSON&query="; $urls = array('about 500 link'); foreach ($urls as $url) { $query .= urlencode("select post_fbid, fromid, object_id, ...
0
votes
1answer
97 views

CurlException: 77: The one-time function was previously called and failed. Its error code is no longer available

Have a Facebook app that is failing as of this morning with the following error: CurlException: 77: The one-time function was previously called and failed. Its error code is no longer available ...
1
vote
3answers
134 views

R scrape a blog for Title, number of comments and 'likes'

I'm trying to use R to grab some information from a few blogs. The data I'd like to grab is: 1) Date posted 2) Blog Post Title 3) Number of Comments 4) Number of Facebook likes. This blog here has ...
1
vote
2answers
56 views

CURL disable issue

I have been getting error code 60 when i attempting to get data from facebook API with PHP SDk. To resolve this we need to disable with curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); in ...
1
vote
2answers
147 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
0answers
153 views

Facebook API facebook->getuser() return 0 after wamp server update

I had a strange bug yesterday that drove me crazy all day and I wanted share the solution with you… I'm using facebook login API, with PHP SDK, and WampServer5 (1.7) with PHP 5.2.5 . Until yesterday ...
2
votes
1answer
944 views

POST to Facebook page via CURL

I've set up a script to post news to my facebook page via PHP It worked for the last 2 years Now, without notice it stopped working. I correctly get the access_token but the second part returns ...
2
votes
1answer
73 views

Database information into Facebook Page Tab? XML and cURL

I am trying to create a simple Facebook Page Tab that retrieves current information from my database. I quickly learned that cross-site scripting won't work as a working demo on the actual website ...

1 2 3 4 5