Bigcommerce应用程序 - 如何更改Auth回调URL

时间:2017-03-20 08:35:34

标签: php bigcommerce

我是Bigcommerce应用的新手

来自样本github, https://github.com/bigcommerce/hello-world-app-php-silex

如何提供

验证回调网址:https://<app hostname>/bigcommerce/callback

加载回调网址:https://<app hostname>/bigcommerce/load

卸载回拨网址:https://<app hostname>/bigcommerce/uninstall

其中, <app hostname>代表 http://localhost/repo/hello-world-app-php-silex(或)

http://XXX.mybigcommerce.com/hello-world-app-php-silex

在第5点, 他们提到“根据需要重新启动软件或整个主机来设置环境变量”。如何重启?

1 个答案:

答案 0 :(得分:0)

按照示例将Auth Call back URL添加到.env文件中。您需要重新启动Web服务器。这就是GitHub页面上提到的一点。

 BC_AUTH_SERVICE=https://login.bigcommerce.com
 BC_CLIENT_ID=<contents of Client ID field>
 BC_CLIENT_SECRET=<contents of Client Secret field>
 BC_CALLBACK_URL=<URL TO YOUR AUTH CALLBACK ENDPOINT>

另请注意,BC_CALLBACK_URL必须与您在配置应用时在开发人员门户中设置的相同。

enter image description here