Video's sharing through Pinterest in iPhone using Xamarin iOS - ios

I need to share videos through Pinterest from my App.
I am able to share images using this website
but I need to share video's through Pinterest.

Use the component Xamarin.Auth to be able to login to Pinterest
Create an App on https://developers.pinterest.com/ for the login and read how the API works in order to be able to communicate with pinterest and share a video
For example see something like this implemented on Xamarin for Twitter

Related

Is there any possibility on iOS to auth in instagram account not using web view, but using instagram app installed on the device?

I have implement instagram auth using webview and it works, but I want to open instagram app that is already installed on the device and use it to auth user.
No, You can't. Instagram has not provided this facility yet for iOS.

Social sharing on iOS

I am working on an app that capable of share images through Facebook, Twitter, Instagram. I have integrated Facebook login for the app by using Facebook iOS SDK. What is the best approach to enable social sharing,
Use three SDKs for iOS,
or
Use Apple social media framework integration
You can also try to use ShareKit (link to GitHub) which allows to work with a lot of services to share content.
For sharing images on your facebook wall you can use apple social media framework i.e. SLComposeViewController class
While sharing on your friend's wall use SDK provided by Facebook developers
Hope it helps you.
For facebook and twitter sharing you can use Social framework.But for the instagram sharing you have to use UIActivityViewController.
Follow the link for facebook and twitter sharing:
how to share content on facebook, twitter and instagram using SLComposeViewController swift
100% working and easy steps

How to login to the Instagram API without using that generic webview in iOS?

Some apps such as Get Likes and LikeBooster have a custom login screen for their Instagram services. How did they accomplish this?

How to post an image to Instagram, after taken the access_token through my iOS app?

I used the Client-Side (Implicit) Authentication as described in http://instagram.com/developer/authentication/ and I receive the access_token. How can I use this to post a photo in the user's Instagram?
Thanks
Instagram does not allow posting photos from anywhere but their own mobile apps. Third party developers do not have access to this API. However, since you are on iOS you can use their iOS hooks to open Instagram to the share screen with a photo from your app as described on http://instagram.com/developer/iphone-hooks/ under the Document Interaction section.

How to read content in Facebook's social plugin in iPhone?

I use Facebook's comment social plugin in my website, and now I'd like to go further integrate it to iPhone app.
Is there any possible way to read the content of the comments in my website by Facebook's iPhone SDK?
fyi:
http://developers.facebook.com/blog/post/490
now we can use graph api to extract the comment:
Comments for every URL can be accessed via the Graph API:
https://graph.facebook.com/comments/?ids={YOUR_URL}

Resources