Is there an API call that we can use to upload multiple photos to Facebook from iPhone app? So far we can do only one at a time.
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- how do you prevent page scroll in textarea on mobi
- Custom UITableview cell accessibility not working
相关文章
- Could I create “Call” button in HTML 5 IPhone appl
- Facebook login for group members
- Unable to process app at this time due to a genera
- How do you detect key up / key down events from a
- “Storyboard.storyboard” could not be opened
- Open iOS 11 Files app via URL Scheme or some other
- Can keyboard of type UIKeyboardTypeNamePhonePad be
- Can not export audiofiles via “open in:” from Voic
You will need to use the Facebook Connect API directly: the iOS SDK does not expose this kind of functionality.
You should have a look at the Publishing section of the Graph Photo API which suggests this URL to upload an image (don't forget to ask for the
publish_stream
credential):With the iOS Facebook Connect SDK that would give us this call, given you have a
Facebook
instance calledfacebook
and aUIImage
instance calledimage
:You can couple this call with batch requests to upload multiple pictures simultaneously.