我正在使用Chrome自定义标签来登录DocumentRoot c:/your_virtual_path
ServerName user.localhost
<Directory c:/your_virtual_path>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Allow from all
Require all granted
</Directory>
。
我可以授权该应用,但Chrome自定义标签在重定向时不会重定向回我的应用。
strava
当Chrome自定义标签转到重定向URI时,如何重定向回应用?
答案 0 :(得分:3)
据此:https://code.google.com/p/chromium/issues/detail?id=536037 URI必须具有自定义方案,否则将无法启动应用程序的意图。
尝试使用类似strava:// callback或sample:// example。
的URI另外,请确保intent中定义的URI与使用的redirect_uri参数以及注册到您应用的参数匹配。
答案 1 :(得分:0)
目前,strava仅支持http [s]方案 我认为只有 fitbit 支持从Chrome自定义标签获取应用回调的自定义方案。