You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/MwsServiceProvider.php
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -39,14 +39,14 @@ public function boot()
39
39
40
40
//Set up the MWS configutation as defined in the LaravelSettings Object by app.
41
41
42
-
Setting::set("storeName","mystore"); // this will be key for store config, you pass this as an option in setstore()
43
-
//Setting::set("authToken",""); // required back from
44
-
Setting::set("merchantId","");
45
-
Setting::set("marketplaceId","");
46
-
Setting::set("keyId","");
47
-
Setting::set("secretKey","");
48
-
Setting::set("amazonServiceUrl",""); // set to valid node
49
-
Setting::set("muteLog","false"); //dev purpose, make it true on production
42
+
Setting::set("storeName","mystore"); // This will be the key to store the configuration, you pass this as an option to objects you instanstiate with setstore()
43
+
Setting::set("authToken",""); //Mws Auth Token - For third party users.
44
+
Setting::set("merchantId",""); //Seller ID
45
+
Setting::set("marketplaceId",""); //Marketplace ID
46
+
Setting::set("keyId",""); //Key ID
47
+
Setting::set("secretKey",""); //Secret Key
48
+
Setting::set("amazonServiceUrl",""); // Set to your relevant URL if different from default
49
+
Setting::set("muteLog","false"); //To log requests, make it true on production to stop logging.
0 commit comments