How to upload image on LinkedIN usin android Linkedin API(POSTSHARE) - linkedin-j

Help me, to upload image from android to linked-in using API, i just know upload image using PostShare but don't know how.

Related

How create application form can upload video?

I want to create application form that can upload picture and video to some cloud(dropbox, googledrive, youtube).
Google form with Google app script and google drive can upload only 10 mb.
Anyone know how to do that pls?
Thank you very much

Is it possible to download the images that my friend shared on the facebook automatically? HOW?

I am trying to create an android application which is able to download all images (or even better videos) that my friend shared on the facebook wall.
Is that possible? Should I start with facebook android SDK? From the I can not find a function to do what I need from android SDK reference. Or maybe I need graph APIs to do that?
Thanks for your suggestions

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 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.

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.