Uploading videos from apps google account - iphone

I want to use Google Data API v3 for uploading video to youtube from apps developer account. I am trying to find out a way to login developer account on users device, but i am unable to find any documentation provide by google related to Objective c. So can any one guide me how i can login with my account on users device so that they can upload videos on youtube from my account.
Uploading to own YouTube account from iOS app

You have all the documentation how to use YouTube Data API (v3) YouTube Data API
The login documentation Login Doc
and look at the sample code Sample Code you will find what you want. ( see YouTubeSampleWindowController class).

Related

Is it allowed to play a youtube video within a Flutter app?

I've been reading the documentation about google api services and it doesn't seem clear to me if I'm allowed to use flutter packages like youtube_player_flutter to display youtube videos in a flutter mobile app. I'm talking about a mobile app that you would distribute on google play or the app store.
I've made an app that only searches for and plays YouTube videos. It doesn't download any video/audio. My app just got rejected from Apple. This is the rejection message:
Jul 11, 2020 at 5:20 AM From Apple
5. 2.3 Legal: Intellectual Property - Audio/Video Downloading Guideline 5.2.3 - Legal
Your app contains content or features that may violate the rights of
one or more third parties. Specifically, your app provides potentially
unauthorized access to third-party audio or video streaming, catalogs,
and discovery services.
Your app and its contents should not infringe upon the rights of
another party. In the event your app infringes another party’s rights,
you are responsible for any liability to Apple because of a claim.
Next Steps
To resolve this issue, please attach documentary evidence in the App
Review Information section in App Store Connect evidencing that you
have all necessary rights or permissions to the third-party audio or
video streaming, catalogs, and discovery services in your app.
In accordance with section 3.2(f) of the Apple Developer Program
License Agreement, you acknowledge that submitting falsified or
fraudulent documentation can result in the termination of your Apple
Developer Program account and the removal of your apps from the App
Store. Once Legal has reviewed your documentation and confirms its
validity, we will proceed with the review of your app.
Resources
Review Guideline 5.2 Intellectual Property for more information about appropriate uses of third-party content and services on the App
Store
Review App Store Connect Help for more information on including notes in the App Review Information section of App Store Connect
Please see attached screenshot for details.
You can use youtube videos for only view purpose, can't download youtube videos in flutter app, otherwise google or apple reject your app.
it's not accepted by app store your application will get rejected

How to get AdTags for Google IMA SDK android

I have created a mobile application, I want to show Google IMA ads in my app with my Exoplayer. We have created a sample application to show IMA ads in Exoplayer using sample tags provided by this url : https://developers.google.com/interactive-media-ads/docs/sdks/android/tags. I want to get video ads from Google. So i have created an account in DoubleClick for Publishers. How can i generate adtags to get preroll,midroll,postroll ads in my Exoplayer.
To get preroll, midroll, and postroll ads you might want to look into Ad Rules offered by DoubleClick. You will be able to generate tags once you have specified tracking URLs, and uploaded your mediafiles to the DFP UI.

Post video to Facebook using Android

Good day,
I wanted to receive app review, but I can’t do it, my app is rejected because the screencast does not meet the requirements. As far as I understand the screen where user confirms the video upload should be shown for the app review.
I want the user to be able to upload videos to our application without Facebook client installed on the user’s device. When I use ShareDialog with ShareVideoContent, the shareDialog.canShow(content) returns “false” if the user doesn’t have facebook client on a device. I use GraphRequest, POST on the "me/videos", but the response is «No permission to publish the video».
Could you tell me what code should be used for the screen to be appeared?
If you want to post a video using the graph API, you must
Login the user in your app
Request the permission to your app
Upload the video.
Have you done all theses steps ?

iPhone: how to upload Photos to Twitter

I am working on Twitter app for iPhone; in this app, I am using MGTwitterEngine and OAuth. I want to upload photos to a user's profile; could you please guide me how to add this feature to my Twitter app? Thanks.
This will do: http://www.getsharekit.com/. It supports many other social services too, so you could potentially upload images to other networks too :)

You tube API for getting videos from a our account in Objective C

In my iphone app i want retrieve videos list from my account in youtube, Is there any API to get this can any one help me out
Thank You
to get videos by user
http://gdata.youtube.com/feeds/api/users/USERNAME/uploads
the api is documented here,
http://code.google.com/apis/youtube/2.0/reference.html
you would make REST API requests from you iphone app
similar question with additional information
How to integrate YouTube API into my iPhone app?