简体   繁体   English

Fitbit登录后如何从野生动物园浏览器启动iOS应用程序

[英]How to start iOS application from safari browser after fitbit login

After finishing the fitbit login, I want to go back to my application, but I get an alert: 在完成fitbit登录后,我想返回到我的应用程序,但是我收到警报:

Cannot open application 无法打开应用程序

I added the url scheme to the info.plist. 我将url scheme添加到了info.plist中。

this is info.plist details:

 <array>
    <dict>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>CFBundleURLName</key>
        <string>applinks:com.360medlink.Tavie</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>fitbittavie://</string>
        </array>
    </dict>
</array>
and the redirect url in fitbit dev settings is fitbittavie://

What am I missing? 我想念什么? Help is very appreciated. 非常感谢您的帮助。

在此处输入图片说明

The issue is that you defined the scheme in the Info.plist file with :// appended. 问题是您在Info.plist文件中定义了方案,并附加了://

The scheme should be specified by itself, without the :// . 该方案应自行指定,不带://

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 登录 FitBit 登录页面后如何重定向回我的 iOS 应用程序? - How to redirect back to my iOS app after logging in on FitBit login page? Android / iOS应用程序中的Fitbit数据 - Fitbit data in android/iOS application 本机iOS应用程序是否可以与Safari浏览器进行交互? - Is it possible for native iOS application to interact with Safari browser? 如何在应用程序IOS启动时出现登录屏幕 - How should login screen appear on start of application IOS 在iOS中使用Oauth从Fitbit获取授权 - get authorization from Fitbit using Oauth in iOS 如何将用户从浏览器重定向到iOS中的应用程序? - How to redirect the User From Browser to Application in iOS? 如何将信息从浏览器传递到应用程序? (IOS) - How to pass information from the browser to an application? (Ios) 当我在 safari 浏览器顶部点击返回应用程序按钮时,如何清除 ios 应用程序中的 facebook 凭据? - How to clear the credentials of facebook in ios application, when i hit on back to app button on the top in safari browser? Javascript如何在iOS上的Safari中确认浏览器关闭 - Javascript how to confirm browser close in Safari on iOS 在从IOS中的safari重定向到视图控制器之后如何调用viewWillAppear - how to call viewWillAppear after redirecting from safari to view controller in IOS
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM