Google 广告 'Operations' 和 'Requests' 有什么区别?
What is the difference between Google Ads 'Operations' and 'Requests'?
我有一个关于 googleads 的问题 api。
图中可以看到"Daily Operational Limit - 10.000 operations / day"和"Daily Report Request Limit - 1.000 requests / day"
知道操作和请求之间有什么区别吗?
link: https://developers.google.com/adwords/api/docs/access-levels
Difference between a request and an operation
So what's the difference between RequestsPerMinute and OperationsPerMinute? Every SOAP service call is counted as a Request. For example, every time you call CampaignService.mutate(), it's counted as one request. However, within the mutate request, you may have passed 100 CampaignOperations--this would be counted as 100 operations!
In the example above, while you may have avoided a RequestPerMinute rate limit by combining multiple operations into one request, you may still hit an OperationsPerMinute rate limit.
You can find more examples on how operations are counted on the Rate Sheet page.
基本上一个请求被分解成一组操作。例如,请参阅文档部分:Rate Sheet and Non-Compliance Fees
我有一个关于 googleads 的问题 api。
图中可以看到"Daily Operational Limit - 10.000 operations / day"和"Daily Report Request Limit - 1.000 requests / day"
知道操作和请求之间有什么区别吗?
link: https://developers.google.com/adwords/api/docs/access-levels
Difference between a request and an operation
So what's the difference between RequestsPerMinute and OperationsPerMinute? Every SOAP service call is counted as a Request. For example, every time you call CampaignService.mutate(), it's counted as one request. However, within the mutate request, you may have passed 100 CampaignOperations--this would be counted as 100 operations!
In the example above, while you may have avoided a RequestPerMinute rate limit by combining multiple operations into one request, you may still hit an OperationsPerMinute rate limit.
You can find more examples on how operations are counted on the Rate Sheet page.
基本上一个请求被分解成一组操作。例如,请参阅文档部分:Rate Sheet and Non-Compliance Fees