Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
The photo-upload tag has no wiki summary.
0
votes
0answers
41 views
Disable notification about uploaded photo on graph api
I'm saving a photo to a user's album.
I'm using no_story = true, because i want to suppresses the feed story
(Documented here: http://developers.facebook.com/docs/reference/api/user/) and its working.
...
0
votes
0answers
30 views
Upload a photo present in my computer through graph api using access token
I've searched it but didn't found how to upload a picture from my computer to user's facebook a/c. I don't want a user to choose a photo and know the path of the picture in my pc, now how to upload ...
0
votes
0answers
103 views
Upload Photo into multipart/form-data to Facebook with Flash SDK
I know, it is possible by Android SDK how I find here.
Android - Upload photo to Facebook with Facebook Android SDK
But I didn't find any information about this in facebook docs:
...
0
votes
0answers
200 views
uploading photo from Sdcard to Facebook using Javascript
I'm working facebook share photo using Phonegap and Javascript. I'm able to upload file to facebook, which is present in online using it's URL. but my requrirement is to upload photo which is present ...
0
votes
1answer
234 views
Facebook Graph API - Error on success?
I am using the Facebook Javascript SDK to upload a photo to the user's timeline. This is my call:
function post_photo_to_facebook() {
var file_name = 'https://my-image.url.com/image.jpg';
var ...
0
votes
0answers
345 views
uploading a photo to facebook page via iphone app
I am using the new 3.1 Facebook SDK for iphone. I would like a user of my app to be able to choose a photo from his iphone and upload it to a Facebook page's album(this user is not an admin of this ...
0
votes
1answer
857 views
Uploading photos to Facebook in ASP.NET Facebook app
I've been cracking my head over this and reading all the available docs I can find but still cannot find a solution, so I am posting here.
First, I started here, the official Facebook guide on ...
3
votes
2answers
1k views
Photo Upload to own wall via iOS Graph API with user's location
I need to post a photo (taken form the camera) in the users facebook wall with the location of the user.
Now, the facebook photo object has a field named place:
object containing id and name of Page ...
0
votes
1answer
219 views
Facebook API photo uploading with imagepng
I have a quiz application on Facebook. It uploads a photo to user's photos at the end of the quiz.
$photo_upload = $facebook->api('/me/photos', 'POST', array(
...
1
vote
1answer
2k views
Facebook PHP SDK app to upload photo to page
I am trying to create a Facebook application that uploads images to a page. I can manage to upload photos to the user's photo album but not to the page's.
Here's my code:
...
0
votes
1answer
208 views
Photo upload fails with Curl exception#26
Hello,
I am trying to upload photo to facebook through my facebook app.
Here is my code:
$photo_details = array(
'message'=> 'my photo'
);
$file = ...
1
vote
1answer
745 views
imagejpeg() [function.imagejpeg]: Unable to open 'img/100001326588945.jpg' for writing
$facebook->setFileUploadSupport(true);
//Create an album
$album_details = array(
'message'=> 'How will you die?',
'name'=> 'How will you die?'
);
$create_album = ...
0
votes
0answers
530 views
Adding photo caption on upload allowed or not? [closed]
Facebook Platform Policies are fuzzy about what's allowed regarding captions to photos uploaded by the app. The policy (https://developers.facebook.com/policy/) states:
You must not pre-fill any ...
0
votes
1answer
6k views
How to setup Facebook Timeline Cover Photo auto upload in website?
I am new to Facebook API and app development. I am trying to build a facebook timeline cover website where users can auto upload and publish the cover to a new album created in the website/app name. ...
0
votes
1answer
518 views
facebook returns error 324 reuires upload file when uploaded the file from fiddler
i am trying to upload photo to facebook using fiddler
In the request builder portion specified the url as
https://graph.facebook.com/118437721597702/photos?access_token=generated token
in the ...
3
votes
1answer
8k views
Facebook photo sharing to friend's wall
I am developing a greeting card application. Greeting card should be posted to multiple friends' wall. I had used graph API to upload picture to friend's wall using [friends_Id]/photos post. Using ...
3
votes
3answers
7k views
Exception when uploading photo with Facebook Graph API
I would like to upload a photo to facebook for a user in the default album for an application. This is described under publishing here:
http://developers.facebook.com/docs/reference/api/photo
The ...
2
votes
1answer
3k views
User must have accepted TOS - Facebook Graph API error when posting photos to group page
I've been struggling to upload an image from the user's computer and posted to our group page using the Facebook Graph API. I was able to send a post request to facebook with the image however, I'm ...