forked from davidtsadler/ebay-sdk-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.php.example
31 lines (31 loc) · 1.12 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
31
<?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.
*/
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',
'oauthUserToken' => 'YOUR_SANDBOX_OAUTH_USER_TOKEN',
'ruName' => 'YOUR_SANDBOX_RUNAME'
],
'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',
'oauthUserToken' => 'YOUR_PRODUCTION_OAUTH_USER_TOKEN',
'ruName' => 'YOUR_PRODUCTION_RUNAME'
]
];