菜鸟教程小白 发表于 2022-12-13 10:29:26

ios - 获取带有 url 的大型 Facebook 个人资料图片


                                            <p><p>所以我正在尝试使用 url 获取大型 Facebook 个人资料图片。使用此网址时</p>

<pre><code>https://graph.facebook.com/v2.3/10153207714499645/picture?access_token=&lt;access token&gt;
</code></pre>

<p>我得到一张 50x50 的图像。但是,当我添加变量 <code>?type=large</code> 时,我得到了 </p>

<pre><code>{
   &#34;error&#34;: {
      &#34;message&#34;: &#34;(#100) type must be one of the following values: small, normal, album, large, square&#34;,
      &#34;type&#34;: &#34;OAuthException&#34;,
      &#34;code&#34;: 100
   }
}
</code></pre>

<p>我的网址是这样的</p>

<pre><code>https://graph.facebook.com/v2.3/10153207714499645/picture?type=large?access_token=&lt;access token&gt;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你应该在参数之间使用<code>&</code>而不是<code>?</code>。</p>

<pre><code>https://graph.facebook.com/v2.3/10153207714499645/picture?type=large&amp;access_token=&lt;access token&gt;   
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 获取带有 url 的大型 Facebook 个人资料图片,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/29453093/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/29453093/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 获取带有 url 的大型 Facebook 个人资料图片