post video to facebook/twitter via sharekit - iphone

Currently,I am developing an app in which I have to post video to Facebook/twitter via share kit.I am
sending text & images via share kit then its easily posted on Facebook/twitter but video is not post.
I am searching everywhere but can't succeeded.how can i solve this? Thanks in advance.

Related

How to share a YouTube video on Facebook and have it work on iPad?

I'm creating a site which allows the user to watch videos. The videos are hosted on YouTube and embedded into our site. We would the user to be able to share our site on Facebook and have the video play inline on the Facebook wall.
We've gotten this to work using Open Graph tags, but there is one problem: when using Facebook through the iOS app or via iOS Safari, an error message comes up saying the playback is not supported since it requires Adobe Flash. Note that when you share a YouTube.com URL, there is an automatic fallback to HTML5 and the video will play on the wall.
How can I get my video to play on the wall? Or at least, how can I make the video link point to our site instead of triggering the error message?
See here for an example of our site: http://m.gad.dk/at-overleve-med-en-alkoholiker/film/
Thanks.
Have you seen this posts? That might be helpful to you.
iPhone App how to post Youtube video link using facebook graph Api
Posting an embedded video link using the Facebook Graph API
How can I post a video, via Facebook's Connect API, to my Facebook profile page?

Uploading audio to facebook from iOS app?

I've been trying to integrate my app with Soundcloud, but I'm just finding that impossible and way too difficult, and there are no good tutorials out there. Are there any other ways to upload audio files to facebook for playback? Any other services besides Soundcloud? Or does anyone know a useful tutorial for setting up Soundcloud with iOS?
you can use their api to do what you want. first upload the audio file to soundcloud and then post the link to the file on facebook.
here is a link to iOS sharing and here is a link to the soundcloud api wrapper.
iOS sharing will help you post the link to Facebook.
This is kind of cheating, but you could upload your "audio" to youtube, and then use the facebook api to post the link (pretty easy using facebook api). Uploading to youtube would have better support, like this
The soundcloud instructions here aren't terrible, a little tricky at first. Perhaps you could share with us what you've done on these three requirements. Where are you getting stuck?
1)Getting the users connections
2)Provide UI for choosing connections (public sharing) or mail addresses (private sharing)
3)Upload the file
EDIT
Additionaly, here is a useful tutorial link for soundcloud uploading
Both SoundCloud and Facebook have Cocoa wrappers and tutorial for their APIs:
SoundCloud Cocoa API Wrapper + tuts
Facebook iOS Tutorial
Hope these help.

Upload Video Twitter

I am developing a mobile app that share video to youtube, fb and twitter. I know there is a twitvid api but as i am fairly new to iphone development i just do not know how to make use of this.
Really appreciate any help on this.
I think you are unable to upload video directly to twitter, but you can upload your video to youtube and then send a shortened url to the user's status.
You can share video to Twitter by using the uploading media new API. And I have tried it, it works.
I made a convenient class to make post video to Twitter more easily.
Please check this: https://github.com/liu044100/SocialVideoHelper
You just need to call this class method.
+(void)uploadTwitterVideo:(NSData*)videoData account:(ACAccount*)account withCompletion:(dispatch_block_t)completion;
Hope it can resolve your problem.

Upload a video to YouTube or Facebook from your app? (iPhone)

I'm trying to find a way to upload a video to Facebook. I know It is possible as some apps do it. I was searching the web for hours but no results. I know it's somehow related to GData.
I managed to upload a video to youtube, can I somehow convert the code so it will upload to Facebook?
To a upload a video on Facebook, try this. They have a sample code here on how to upload a video using the Facebook Graph API.
I think, that the best way is to upload a video to youtube by using GData, and then post only link for it to Facebook by using FBConnect Objective-C library.

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.