2 |
- |
1 |
eBay Platform Notifications Listener
|
|
|
2 |
Written in PHP 5 using ext/soap
|
|
|
3 |
|
|
|
4 |
by Adam Trachtenberg
|
|
|
5 |
|
|
|
6 |
Sample code to process eBay Platform Notifications using the PHP 5
|
|
|
7 |
ext/soap extension.
|
|
|
8 |
|
|
|
9 |
listener.php
|
|
|
10 |
Receives the notifications from eBay, validates the message signature,
|
|
|
11 |
and allows you to act on them.
|
|
|
12 |
|
|
|
13 |
generator.php
|
|
|
14 |
Sends notifications on demand to your listener. Allows you to test
|
|
|
15 |
your listener code without going to eBay and triggering them manually.
|
|
|
16 |
|
|
|
17 |
SetNotificationPreferences.php
|
|
|
18 |
Tell eBay where it should send notifications. Also use it to
|
|
|
19 |
subscribe to specific notification types on behalf of a member.
|
|
|
20 |
|
|
|
21 |
GetNotificationPreferences.php
|
|
|
22 |
Check your eBay notification settings.
|
|
|
23 |
|
|
|
24 |
eBaySOAP.php
|
|
|
25 |
Helper files to make eBay Trading Service API calls and a base class
|
|
|
26 |
shared across the Platform Notification listener and generator.
|
|
|
27 |
|
|
|
28 |
ebay.ini
|
|
|
29 |
Configuration file for keys and tokens.
|
|
|
30 |
|
|
|
31 |
notifications/*.xml
|
|
|
32 |
Sample notifications used by generator.php
|
|
|
33 |
|
|
|
34 |
platform-notifications.txt
|
|
|
35 |
Explains whys and hows of using notifications. Unfinished.
|