Create Album and Upload Photo in my facebook account using iphone application - iphone

Thanks for the help.
In my application i want to add facebook feature.
After Changes in my Picture i want to upload that image in my facebook account.
Is there any code is available related this operation?
Please help me on this.
Pankaj Gadhiya

Try the API at http://github.com/facebook/three20 and http://forum.developers.facebook.net/viewtopic.php?pid=132728

Related

How to Upload photo into Foursquare API in Iphone

I am Working on Foursquare API and it's working fine for log in .
Now i wants to upload photo into Foursquare, i have access token and all the relevant information.
I had searched lot for that but not finding code.Can Anyone please help me ????
Thanks !
What type of photo are you trying to upload?
If you're trying to upload a profile photo of the currently auth'd user, check out this endpoint:
https://developer.foursquare.com/docs/users/update
If you want to add a photo to a venue, tip, or check-in, take a look at:
https://developer.foursquare.com/docs/photos/add
Hope this helps!

Post picture to Facebook from iPhone/iPad app

I have developed an app for the iPad and iPhone that uses the camera to take a picture
Can someone tell me the easiest way to publish that to a users Facebook page?
Do I need to use the Facebook api's? I am not writing a Facebook app, just want to post the picture on the users wall.
Thanks
Would not make sense not to use FB API. There might be some other API that uses FB API itself but not sure about that..
I found a similar question:
question
Hope that helps!

how to display profile pic for facebook using sharekit, iphone

I need to publish users profile pic that is available in facebook in my iphone app.
Can you guys please suggest how to make this done using sharekit.
Thanks,
Chaitanya.,
I don't think ShareKit is made for that purpose. The idea is to enable sharing on multiple platforms. For getting the profile pic, you will need to use Facebook's official iOS SDK.
The relevant graph API would be:
https://graph.facebook.com/username/picture
There is no graph API for updating the profile picture. You can only retrieve it. However, it is possible to update it, check out this app.
The general approach would be to do a straight up POST to Facebook with the image and the crop dimensions for the final profile picture. However, since that isn't an API-based approach - your code will be brittle.
Sharekit is not the way to go for Facebook profile pictures, but you CAN update a Twitter profile picture with it.

Upload a UIImage from iPhone to Facebook

How do you upload a UIImagefrom iPhone to Facebook?
I'm using facebook-ios-sdk-8b3c17d version, and none of the other examples seem to be using the new facebook API.
Thanks
Take a look here:
https://github.com/facebook/facebook-ios-sdk
in the example you can upload an image from your phone into your facebook photos.
this is the appId that I set, not the appKey which is in the error message. they are not the same...
See my answer here
Documented process for using facebook connect for the iPhone to upload photos
It using Graph Api for uploading photos.

Uploading pictures to Facebook from iphone app

I'm currently using facebook to post text in the user's wall. I'm wondering if it's possible to post pictures, such as screenshots from my app for example, in the posts, because someone explained me that currently it's only possible to attach pictures from an URL to the post, and not any picture from the iphone.
It's also possible to upload pictures to the user's facebook album ?
Thanks.
I don't for sure how to do it, but the Facebook SDK Api would probably support what you want.
http://github.com/facebook/facebook-ios-sdk
The opensource ShareKit framework - http://www.getsharekit.com/
Does this successfully and easily - You can publish a photo to your wall, and it is added to an album as well.
Great stuff...:)
Oded.