Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

I have an app that lets me take a pic or choose from my gallery and upload it to my personal fb page.

How can I let it upload to my fanpage instead of my own page?

I use this for putting it in my page:

var data = {picture: image};
            Titanium.Facebook.requestWithGraphPath('me/photos', data, "POST", function(e){
        if(e.success) {
 var d = Titanium.UI.createAlertDialog({
 title: Titanium.App.Properties.getString("namn"),
 message: 'Uploaded!',
 buttonNames: ['Ok'],
});
d.show();  }

It wont just work to change the 'me/photos' to 'pageid/photos'.

What will I have to do to get it to work?

Thanx

share|improve this question

1 Answer

As described under the photos secion in the Graph API Documentation for Page

You should name the parameter source and not picture

Also, make sure you have the publish_stream and manage_pages permissions

share|improve this answer
ok but it doesnt solve the problem. – Richard Stenstierna Jan 5 at 11:36
What response are you getting from graph api ? – Aviram Segal Jan 5 at 11:38
facebook errdomain 10000. That should indicate that my permissions is wrong right? i can post comments, likes etc to the page so thats ok but i cant post an image . ihave publish_stream photo_upload permissions it wont matter if i try to post to the feed instead of photos either. – Richard Stenstierna Jan 5 at 11:53
You need publish_stream and manage_pages permissions – Aviram Segal Jan 5 at 12:02
Yes but if i set manage_pages permissions isnt it just the pages owned by the user that is logged in that will affect? I want users to be able to upload their photos to my bands facebook page. – Richard Stenstierna Jan 5 at 12:53
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.