菜鸟教程小白 发表于 2022-12-13 08:46:30

ios - 如何在 UIWebView iOS 中检测重定向


                                            <p><p>我正在将 Xcode 用于社交媒体网站,我对登录/注册过程有一个快速了解。例如,我有一个链接到登录 API 页面的 UIWebView。 (例如 www.<strong>_.com/api_login.php?)当用户在该页面上使用他们的凭据登录时,网站会将他们重定向到成功页面 (www._</strong>.com/api_success.php ?) 使用存储在 iOS 应用程序中的 API 身份验证 token ,用于嵌入网站源代码中的用户特定任务。 </p>

<p>这是我的问题:一旦身份验证 token 位于 (www.<strong>_.com/api_success.php?) 页面上,我如何告诉 Xcode 执行 Javascript 来获取身份验证 token ?请记住,该 URL 是特定于用户的,并且在链接末尾有一个用户特定的 apikey 。 (www._</strong>.com/api_success.php?apiconnectkey=123456789) </p>

<p>在此先感谢您的帮助,
技术专家</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我不确定我是否 100% 关注,但这里有一些值得关注的地方:</p>

<p>在您的 ViewController 中实现 UIWebViewDelegate 并设置委托(delegate)属性,然后实现此消息</p>

<pre><code> -(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:
</code></pre>

<p>文档</p>

<p> <a href="https://developer.apple.com/library/ios/documentation/uikit/reference/UIWebViewDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/UIWebViewDelegate/webView:shouldStartLoadWithRequest:navigationType" rel="noreferrer noopener nofollow">https://developer.apple.com/library/ios/documentation/uikit/reference/UIWebViewDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/UIWebViewDelegate/webView:shouldStartLoadWithRequest:navigationType</a> :</p>

<p>这将让您看到在 WebView 中设置的每个 URL。所以,你可以捕获 apiconnectkey。</p>

<p>此外,您可以在页面上执行 JavaScript </p>

<pre><code>
</code></pre>

<p>其中 <code>getToken()</code> 是页面上的一个函数。这将返回一个字符串。</p>

<p> <a href="https://developer.apple.com/library/ios/documentation/uikit/reference/UIWebView_Class/Reference/Reference.html" rel="noreferrer noopener nofollow">https://developer.apple.com/library/ios/documentation/uikit/reference/UIWebView_Class/Reference/Reference.html</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 UIWebView iOS 中检测重定向,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/25021817/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/25021817/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 UIWebView iOS 中检测重定向