Ad Exchange Seller REST API和API密钥

时间:2015-05-26 08:42:23

标签: c# google-api google-api-dotnet-client google-authentication

我是否可以使用API​​密钥访问Ad Exchange Seller REST API。我正在使用带有c#的Google.Apis.AdExchangeSeller.v2_0包。我的代码就像以下一样

var service = new AdExchangeSellerService(new BaseClientService.Initializer
{
   ApplicationName = "Abc Client",
   ApiKey = "[MY APP KEY]",
});

var accounts = service.Accounts.List().Execute();

1 个答案:

答案 0 :(得分:1)

没有。 APIKEY仅用于公共数据。

Ad Exchange卖方REST API顶部需要Accounts: list个状态才需要授权。

  

授权

     

此请求需要至少以下一项授权   范围(了解有关身份验证和授权的更多信息)。

     

范围https://www.googleapis.com/auth/adexchange.seller   https://www.googleapis.com/auth/adexchange.seller.readonly

您需要进行身份验证才能使用它。