I want to create an app for uploading videos to youtube. So I used youtube data API. And I will serve a service for my users to uploading video youtube.
And Official documents says that:
https://developers.google.com/youtube/v3/getting-started?hl=tr#calculating-quota-usage
Google calculates your quota usage by assigning a cost to each request. Different types of operations have different quota costs. For example:
A read operation that retrieves a list of resources -- channels, videos, playlists -- usually costs 1 unit. A write operation that creates, updates, or deletes a resource usually has costs 50 units. A search request costs 100 units. A video upload costs 1600 units. The Quota costs for API requests table shows the quota cost of each API method. With these rules in mind, you can estimate the number of requests that your application could send per day without exceeding your quota.
Is this quotas for a application level or user level. If it is for application level, In this way I have 6 video upload credit from youtube?
What is the clear explanation for this case? Is there any difference about app level quota between user level quota?