我正在使用 eBay API 并尝试接收以下通知:
- 已售出物品
- 固定价格交易
- 拍卖结束
但是,我收到的唯一通知是“FixedPriceTransaction”。
我用来“设置”我收到的通知的代码如下所示:
$opts = array(
'ApplicationDeliveryPreferences' => array(
'ApplicationEnable' => 'Enable',
'ApplicationURL' => 'http://my.domain/ebay_notifications.php',
),
'UserDeliveryPreferenceArray' => array(
'NotificationEnable' => array(
'EventType' => 'ItemSold',
'EventEnable' => 'Enable'
),
'NotificationEnable' => array(
'EventType' => 'EndOfAuction',
'EventEnable' => 'Enable'
),
'NotificationEnable' => array(
'EventType' => 'FixedPriceTransaction',
'EventEnable' => 'Enable'
)
)
);
知道我做错了什么吗?