菜鸟教程小白 发表于 2022-12-13 15:49:44

php - 如何使用 [PHP] cURL 发送 HTTP/2 PING 帧


                                            <p><p>我正在创建一个 PHP(<em>不要讨厌!!</em>)脚本,它根据他们的 <a href="https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/APNsProviderAPI.html#//apple_ref/doc/uid/TP40008194-CH101-SW1" rel="noreferrer noopener nofollow">new documentation</a> 创建与 Apple 新 APNS 服务器的长期连接。 .</p>

<p>一般概念是一个 <code>while(true)</code> 循环,它会休眠 <em>n</em> 秒,并检查队列中的出站推送通知,这些通知被创建并插入到数据库中通过单独的应用程序。</p>

<p>由于我对 HTTP/2 规范和协议(protocol)缺乏了解,我无法理解文档的以下部分。</p>

<blockquote>
<h3>Best Practices for Managing Connections</h3>

<p><code>&lt;snip&gt;</code> You can check the health of your connection using an HTTP/2 <code>PING</code> frame.</p>
</blockquote>

<p>在此循环运行时,需要提醒我连接的健康状况,以便在我断开连接或连接以某种方式终止的情况下重新连接。</p>

<p>所以,总而言之,我将如何使用 cURL(特别是 PHP 的 cURL)发送 HTTP/2 <code>PING</code> 帧,响应会是什么样子?</p>

<p>我想,由于 cURL 使用 nghttp2 作为与 HTTP/2 交互的低级库,这与它有关,但我不确定如何在 curl 中使用 nghttp2 函数:<a href="https://nghttp2.org/documentation/nghttp2_submit_ping.html" rel="noreferrer noopener nofollow">https://nghttp2.org/documentation/nghttp2_submit_ping.html</a> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>curl(当前)不提供允许应用程序发送特定 HTTP/2 帧(如 PING)的 API。</p></p>
                                   
                                                <p style="font-size: 20px;">关于php - 如何使用 cURL 发送 HTTP/2 PING 帧,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36431063/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36431063/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: php - 如何使用 [PHP] cURL 发送 HTTP/2 PING 帧