当我尝试使用 oAuth PHP 示例脚本 (oauth2-login-example.php) 登录时出现此错误
Please provide your Application Key in the URL as "?app_key=".
我已经用我的代码替换了默认app_key
值client_secret
。
你可以在这里测试它:http ://www.daysofthedead.net/hub/examples/oauth2-login-example.php
当我尝试使用 oAuth PHP 示例脚本 (oauth2-login-example.php) 登录时出现此错误
Please provide your Application Key in the URL as "?app_key=".
我已经用我的代码替换了默认app_key
值client_secret
。
你可以在这里测试它:http ://www.daysofthedead.net/hub/examples/oauth2-login-example.php
您需要从 Eventbrite 为您的帐户申请一个 API 密钥。只需前往https://www.eventbrite.com/api/key并创建一个。然后用 Eventbrite 提供的值替换“YOUR_APP_KEY”和“YOUR_CLIENT_SECRET”。
$login_widget_html = Eventbrite::loginWidget(array( 'app_key' => 'YOUR_APP_KEY',
'client_secret' => 'YOUR_CLIENT_SECRET'));