ios - 获取带有 url 的大型 Facebook 个人资料图片
<p><p>所以我正在尝试使用 url 获取大型 Facebook 个人资料图片。使用此网址时</p>
<pre><code>https://graph.facebook.com/v2.3/10153207714499645/picture?access_token=<access token>
</code></pre>
<p>我得到一张 50x50 的图像。但是,当我添加变量 <code>?type=large</code> 时,我得到了 </p>
<pre><code>{
"error": {
"message": "(#100) type must be one of the following values: small, normal, album, large, square",
"type": "OAuthException",
"code": 100
}
}
</code></pre>
<p>我的网址是这样的</p>
<pre><code>https://graph.facebook.com/v2.3/10153207714499645/picture?type=large?access_token=<access token>
</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&access_token=<access token>
</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]