I have a web application in .NET with youtube api v2 that uploads my clients videos to my companny channel, I want to migrate the youtube api to v3 but the ClientLogin is deprecated, when a client try to upload a video with oauth 2.0 the video uploads in the channel of my client, not in the company channel, there is a way to upload videos in one specific channel like in youtube api v2?
.net Youtube api v3 upload videos to an specific account
654 Views Asked by andres felipe jaimes sanchez At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in ASP.NET
- Create an IIS web request activity light
- Writing/Overwriting to specific XML file from ASP.NET code behind
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- Entity Framework Code First with Fluent API Concurrency `DbUpdateConcurrencyException` Not Raising
- Getting deeply embedded XML element values
- What is best way to check if any of the property of object is null or empty?
- NuGet - Given a type name or a DLL, how can I find the NuGet package?
- ASP-MVC Code-first migrations checkbox not active
- How do i add onclient click to my jquery button
- Jquery: Change contents of <select> tag dynamically
- Retrieving data from Oracle database
- ASP.NET: Fill Textbox field upon dropdownlist selection by user
- Why web API return 404 when deploy to IIS
Related Questions in OAUTH-2.0
- Not getting refresh token with google oauth2
- SoundCloud Authentication Consistently Returns 401 invalid_grant For Some Users
- How can I share Azure Active Directory authentication between server side and client script?
- OAuth2 and API Json request not working with jQuery Call
- Flask-Restful, oauth, and Salesforce
- Bearer token in MVC controller to access Web API
- Revoking OAuth tokens in Mule
- how to signup user using google-plus integradation in web?
- Need to run getAuthToken twice before receiving access token, why?
- chrome.identity.getAuthToken and refresh token?
- dropbox api authentication (Error: [400] 'invalid_client')
- Retrieve Google Sites's Domain Index feed using OAuth 2.0 with Service Account
- hello.js: Is it possible to set the provider's settings dynamically?
- How to share developer account at LinkedIn
- Linkedin Unsupported POST target
Related Questions in YOUTUBE-API
- Youtube API v3 - get list of all restricted countries
- Grabbing color palette from YouTube thumbnail
- Youtube subscriber count with Youtube Data Api V3
- I am trying to use GoogleAPI YouTube to get details about YouTube Videos
- YouTube API - Getting current time in a global variable
- Obtaining video duration
- Youtube Google API V3: List Videos not returning video tags
- GAE python - client_secrets.json 'File not found' - app.yaml error?
- Youtube API v3, Invalid parameter issue while video play
- Get channel location information on YouTube API V3
- How to get data of a youtube playlist in JSON format using JavaScript API V3
- Google Developer API V3 for video upload in YouTube C#.net
- Is there a Way to search several Youtube-Channels in one API-Call
- Triggering a simple event with YouTube iframe API / sync event with player.getCurrentTime
- Oldest video from channel uploads or sort order for playlistItems method
Related Questions in GOOGLE-CLIENT-LOGIN
- Failed to start the resumable upload (HTTP 404)
- Why when trying to upload a video file to youtube i'm getting InvalidCredentialsException?
- Exception using Google.GData.Apps : The remote server returned an error: (503) Server Unavailable
- Why inserting Google client ID make React produce the Uncaught SyntaxError: Invalid left-hand side in assignment
- How to get data form Google_Service_PeopleService?
- redirect_uri is always localhost when json and console have it as a proper domain of localhost
- cannot authenticate by Google Client API Android
- Upload video to youtube with hardcode username & password ios
- Execution of authentication request returned unexpected result: 404
- upload youtube video using v3 with static user name and password
- Zend And YouTube Not Deleting Videos
- API for getting daily costs related to GCP
- .net Youtube api v3 upload videos to an specific account
- How to get user info via Google API using js OR curl
- What to use for "Sign in with Google" button's data-login_uri attribute?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The problem you are having is that when your client authenticates they are authenticating to their personal account. You want to allow them to upload to your account. To do that you are going to have to authenticate the application to your account save the refresh token and use that to allow them to upload to your account. If this is a web application that shouldn't be to hard as you can save this refresh token on the server some place and use that to allow anyone to upload to your account.
With any other API I would say to create a service account to allow people to upload to your account but unfortunately for us the YouTube API doesn't allow for service accounts nor does it allow you to grant someone else access to your account we have to hack it in this way.
I hope this makes a little sense if not let me know and I will try and help. This was a little long for a comment.