forked from davidtsadler/ebay-sdk-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.php.example
30 lines (30 loc) · 1.01 KB
/
configuration.php.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
* Configuration settings used by all of the examples.
*
* Specify your eBay application keys in the appropriate places.
*
* Be careful not to commit this file into an SCM repository.
* You risk exposing your eBay application keys to more people than intended.
*
* For more information about the configuration, see:
* http://devbay.net/sdk/guides/sample-project/
*/
return [
'sandbox' => [
'credentials' => [
'devId' => 'YOUR_SANDBOX_DEVID_APPLICATION_KEY',
'appId' => 'YOUR_SANDBOX_APPID_APPLICATION_KEY',
'certId' => 'YOUR_SANDBOX_CERTID_APPLICATION_KEY',
],
'authToken' => 'YOUR_SANDBOX_USER_TOKEN_APPLICATION_KEY'
],
'production' => [
'credentials' => [
'devId' => 'YOUR_PRODUCTION_DEVID_APPLICATION_KEY',
'appId' => 'YOUR_PRODUCTION_APPID_APPLICATION_KEY',
'certId' => 'YOUR_PRODUCTION_CERTID_APPLICATION_KEY',
],
'authToken' => 'YOUR_PRODUCTION_USER_TOKEN_APPLICATION_KEY'
]
];