Google Cloud Translation API got error "403 User Rate Limit Exceeded" - translation

I'm using Google Cloud Translation Service for my bussiness
When I use URL "https://translation.googleapis.com/language/translate/v2" to translate my text. The result is :
{
"error": {
"code": 403,
"message": "User Rate Limit Exceeded",
"errors": [
{
"message": "User Rate Limit Exceeded",
"domain": "usageLimits",
"reason": "userRateLimitExceeded"
}
]
}
}
I already used payment version, and config all in Google Cloud Console but useless.
Who can help me...
POSTMAN

Related

YouTube API 429 error while not using full quota

Still a couple of weeks; we are getting more and more 429 HTTP Errors while making API requests to the YouTube API (mainly when trying to add or delete videos in a playlist). The error seems related to "quotas" indicated in the Google API console, but we checked this and are way below the limit according to the Google console report (we already have increased our quota value in the past, so this one should be more than enough).
Any idea why we are getting this error?
Error message:
{
"error": {
"code": 429,
"message": "Resource has been exhausted (e.g. check quota).",
"errors": [
{
"message": "Resource has been exhausted (e.g. check quota).",
"domain": "global",
"reason": "rateLimitExceeded"
}
],
"status": "RESOURCE_EXHAUSTED"
}
}
And our quota for the YouTube API:

Unable to fetch data from YT monetisation metrics api endpoint

When we are are trying to fetch data from youtube monetisation metrics api endpoint for an account, but it is providing us with a** forbidden error**. We have also checked for monetaryanalytics scope for that account and it is available in account-props.
We have been receiving a forbidden error without any other error message to act further upon it
Adding the API response here:
{
"error": {
"code": 403,
"message": "Forbidden",
"errors": [
{
"message": "Forbidden",
"domain": "global",
"reason": "forbidden"
}
]
}
}
Can anyone please help on this, any help will be appreciated

OAuth 2.0 Playground - Examples of Headers for sending email with Gmail API v1

I have been searching all day for the format I need to use to add Headers to the OAuth 2.0 Playground to be able to send an email within the OAuth 2.0 Playground.
I have tried From, Subject, Sender, To but I still get the following error.
{
"error": {
"status": "INVALID_ARGUMENT",
"message": "Recipient address required",
"code": 400,
"errors": [
{
"reason": "invalidArgument",
"message": "Recipient address required",
"domain": "global"
}
]
}
}
I would love to see an example of what you have done to get this to work.
Thx
Marty

Unable to fetch YouTube Insights for some accounts

For specific accounts, we are able to fetch data but not able to fetch reporting analytics, I am getting
error { "error": {
"code": 403,
"message": "Forbidden",
"errors": [
{
"message": "Forbidden",
"domain": "global",
"reason": "forbidden"
}
] } }
Account has permissions for accessing reports. But for accounts with same permissions, we are able to fetch insights
API Endpoint: https://youtubeanalytics.googleapis.com/v2/reports
API Request:
https://youtubeanalytics.googleapis.com/v2/reports?access_token=xxxxxxx&dimensions=day&metrics=views%2CredViews%2Ccomments%2Clikes%2Cdislikes%2CvideosAddedToPlaylists%2CvideosRemovedFromPlaylists%2Cshares%2CestimatedMinutesWatched%2CestimatedRedMinutesWatched%2CaverageViewDuration%2CaverageViewPercentage%2CannotationClickThroughRate%2CannotationCloseRate%2CannotationImpressions%2CannotationClickableImpressions%2CannotationClosableImpressions%2CannotationClicks%2CannotationCloses%2CcardClickRate%2CcardTeaserClickRate%2CcardImpressions%2CcardTeaserImpressions%2CcardClicks%2CcardTeaserClicks%2CsubscribersGained%2CsubscribersLost%2CestimatedRevenue%2CestimatedAdRevenue%2CgrossRevenue%2CestimatedRedPartnerRevenue%2CmonetizedPlaybacks%2CplaybackBasedCpm%2CadImpressions%2Ccpm&ids=channel%3D%3DMINE&startDate=2020-06-10&endDate=2020-07-09

YouTube API V3 Comment Threads doesn't work with access Token

I am trying to call the following url with my access token which is for getting comments from a video but it doesn't seem to work and gives me a Insufficient Permissions Error.
Here's the URL I try to call-
https://www.googleapis.com/youtube/v3/commentThreads?part=snippet&maxResults=1&videoId=tdUX3ypDVwI&access_token={myAccessToken}
but it sends me the following error:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "insufficientPermissions",
"message": "Insufficient Permission"
}
],
"code": 403,
"message": "Insufficient Permission"
}
}
Apparently, It doesn't make sense to me? Please help.
You need the following scope :
https://www.googleapis.com/auth/youtube.force-ssl

Resources