Facebook rss - how to increase thumb image size?

I am accessing facebook-rss via

http://www.facebook.com/feeds/page.php?format=rss20&id=...

Update: Actual URL:

http://www.facebook.com/feeds/page.php?format=rss20&id=170589069647190

However, the thumbs for the images are small. Is it possible to change the size of the body with the settings of rss-arg or FB-page?

(or should I receive FB messages differently)

Yours faithfully,

+5
source share
2 answers

To do this, you should use the Facebook Graph API , it is much more durable, versatile and better supported.

  • /PAGE_ID/feed, /170589069647190/feed. ( explorer, ) , , RSS-. , object_id.
  • object_id /OBJECT_ID?fields=images,height,width,source. ,

. height, width source - . images . .

{
  "images": [
    {
      "height": 2048, 
      "width": 1365, 
      "source": "https://sphotos-b.xx.fbcdn.net/hphotos-snc7/s2048x2048/599910_508618522510908_1608434210_n.jpg"
    }, 
    {
      "height": 960, 
      "width": 640, 
      "source": "https://sphotos-b.xx.fbcdn.net/hphotos-snc7/599910_508618522510908_1608434210_n.jpg"
    }, 
    {
      "height": 720, 
      "width": 480, 
      "source": "https://sphotos-b.xx.fbcdn.net/hphotos-snc7/s720x720/599910_508618522510908_1608434210_n.jpg"
    }, 
    {
      "height": 600, 
      "width": 400, 
      "source": "https://sphotos-b.xx.fbcdn.net/hphotos-snc7/s600x600/599910_508618522510908_1608434210_n.jpg"
    }, 
    {
      "height": 480, 
      "width": 320, 
      "source": "https://sphotos-b.xx.fbcdn.net/hphotos-snc7/s480x480/599910_508618522510908_1608434210_n.jpg"
    }, 
    {
      "height": 320, 
      "width": 213, 
      "source": "https://sphotos-b.xx.fbcdn.net/hphotos-snc7/s320x320/599910_508618522510908_1608434210_n.jpg"
    }, 
    {
      "height": 270, 
      "width": 180, 
      "source": "https://fbcdn-photos-a.akamaihd.net/hphotos-ak-snc7/599910_508618522510908_1608434210_a.jpg"
    }, 
    {
      "height": 130, 
      "width": 86, 
      "source": "https://fbcdn-photos-a.akamaihd.net/hphotos-ak-snc7/599910_508618522510908_1608434210_s.jpg"
    }, 
    {
      "height": 130, 
      "width": 86, 
      "source": "https://fbcdn-photos-a.akamaihd.net/hphotos-ak-snc7/s75x225/599910_508618522510908_1608434210_s.jpg"
    }
  ], 
  "height": 720, 
  "width": 480, 
  "source": "https://sphotos-b.xx.fbcdn.net/hphotos-snc7/s720x720/599910_508618522510908_1608434210_n.jpg", 
  "id": "508618522510908", 
  "created_time": "2013-03-04T11:05:09+0000"
}

. , .

+4

: , Facebook .

, : XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX_s.jpg

"s" ".jpg" "n" : XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX_n.jpg

"q" 180 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX_q.jpg

+7

All Articles