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'
)
)
);
私が間違っていることは何か分かりますか?