菜鸟教程小白 发表于 2022-12-13 13:35:22

ios - iOS 中的 CURL 请求


                                            <p><p>我正在尝试在我的应用中将 CO-OP API 用于某些目的 (<a href="http://coopapp.com/api" rel="noreferrer noopener nofollow">http://coopapp.com/api</a>)</p>

<p>我知道如何使用 curl 执行请求:</p>

<pre><code>curl http://coopapp.com/groups/20/statuses -H &#39;Accept: application/xml&#39; \ -H &#39;Content-Type: application/xml&#39; -u email:password
</code></pre>

<p>但我不知道如何在 iOS 中做到这一点,希望有人可以插入我朝着正确的方向前进。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以使用 <code>NSURLConnection</code> 类来做到这一点。但我建议使用 <a href="https://github.com/MugunthKumar/MKNetworkKit/" rel="noreferrer noopener nofollow">MKNetworkKit</a>这是一个方便的包装。它实际上甚至在其操作描述中显示了等效的 <code>curl</code> 命令。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - iOS 中的 CURL 请求,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10476568/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10476568/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - iOS 中的 CURL 请求