eBay大中华区API开发者平台 开发者专区

搜 索
首页>API开发者平台>技术文档>如何退订Platform Notifications

技术文档

问题
如何退订Platform Notifications
解答
0
人觉得答案有帮助)

 

如果Token过期失效,系统会自动停止发送Platform Notifications,开发者不必进行任何操作。

如果Token还在有效期内,可以在调用SetNotificationPreferences时将ApplicationEnable设置为“Disable”来退订Platform Notifications。

示例的Request如下:

<?xml version="1.0" encoding="utf-8"?> 
<SetNotificationPreferencesRequest xmlns="urn:ebay:apis:eBLBaseComponents"> 
<RequesterCredentials> 
<eBayAuthToken>ABC...123</eBayAuthToken> 
</RequesterCredentials> 
<Version>697</Version> 
     <ApplicationDeliveryPreferences> 
          <ApplicationEnable>Disable</ApplicationEnable> 
          <DeviceType>Platform</DeviceType> 
     </ApplicationDeliveryPreferences> 
</SetNotificationPreferencesRequest>

可以以此禁用所有对此App的Notifications,但是用户偏好将得以保留。


答案对您有帮助吗?

是,对我很有帮助
否,没解决我的问题