feed

php picasa api show large image

两盒软妹~` 提交于 2020-01-09 10:54:13
问题 Ok so far I have been able to show thumbnails from user/album using the google feed. Everything displays ok, except when I want to show the thumbnail image larger. I can't seem to get the large image to show, not sure what to use here..here's my code: <?php $user = '100483307985144997386'; $albumid = '5092093264124561713'; $picasaURL = "http://picasaweb.google.com/$user/"; $albumfeedURL = "http://picasaweb.google.com/data/feed/api/user/$user/albumid/$albumid"; $sxml_album = simplexml_load

How to :conceal from Feed?

微笑、不失礼 提交于 2020-01-06 17:09:07
问题 There are many valuations, activities, and users. Each table has this line: t.boolean "conceal", default: false When submitting a valuation it can be made true: pry(main)> Valuation.find(16) Valuation Load (0.1ms) SELECT "valuations".* FROM "valuations" WHERE "valuations"."id" = ? LIMIT 1 [["id", 16]] => #<Valuation:0x007fbbee41cf60 id: 16, conceal: true, user_id: 1, created_at: Thu, 23 Apr 2015 20:24:09 UTC +00:00, updated_at: Thu, 23 Apr 2015 20:24:09 UTC +00:00, likes: nil, name: "CONCEAL

Automatic php/mysql update script using XML/CSV/FTP

天涯浪子 提交于 2020-01-06 03:13:45
问题 Im currently working on developing a PHP/MYSQL property classifieds website where people can register and manually add property classified adverts. This is all working fine, but I now need to add the functionality to bulk upload property adverts. There are 2 ways I need to do this, the first is via XML, where a member who is registered on our site can add the url of an XML file on their server, on their account page on our website. Our automatic script will read through the XML file each

Custom jquery RSS feed plugin with micro-template

守給你的承諾、 提交于 2020-01-06 02:41:09
问题 I'm trying to make an rss feed plugin so i can get images or whichever node i want. As far as i know, most feed plugins use the Google feed api that you can select predefined nodes and not custom ones. To overcome cross domain policy i'm using YQL to get the rss feed. You can see the working code: http://jsfiddle.net/DTZ4g/4/ Overall it's working nicely but i want to add templates so it would be customizable outside the plugin. I'm using John Resig's Micro templating engine but i can't get it

Facebook Graph API {user-id}/feed from others empty

╄→гoц情女王★ 提交于 2020-01-06 02:28:09
问题 I want to get /{user-id}/feed from another user (user B) rather than "me" (user A), but the query returns an empty list. I'm using the Graph API Explorer to make the queries, and I've got the Access Token with user_posts , user_status and read_stream permissions, but I can't get this information. In this thread is said that: Additionally the queried user needs to grant the app the read_stream permission. In this other thread they said: If the user is your app user authorized with read_stream

how to RSSFeeds from Multiple Websites

我与影子孤独终老i 提交于 2020-01-04 17:52:35
问题 i am gettting RssFeeds for my site and it is showing.But how to get RSS Feeds from multiple sites and need to show in line from 1st site three feeds,2nd site three feeds etc;mostly from CNN,BBC here is my code : protected void Page_Load(object sender, EventArgs e) { BlogFeeds(); } protected void BlogFeeds() { try { XmlDocument xmldoc = new XmlDocument(); XmlNodeList items = default(XmlNodeList); xmldoc.Load("http://rss.cnn.com/rss/edition_americas.rss"); xmldoc.Load("http://feeds.bbci.co.uk

how to RSSFeeds from Multiple Websites

吃可爱长大的小学妹 提交于 2020-01-04 17:51:56
问题 i am gettting RssFeeds for my site and it is showing.But how to get RSS Feeds from multiple sites and need to show in line from 1st site three feeds,2nd site three feeds etc;mostly from CNN,BBC here is my code : protected void Page_Load(object sender, EventArgs e) { BlogFeeds(); } protected void BlogFeeds() { try { XmlDocument xmldoc = new XmlDocument(); XmlNodeList items = default(XmlNodeList); xmldoc.Load("http://rss.cnn.com/rss/edition_americas.rss"); xmldoc.Load("http://feeds.bbci.co.uk

Can't get pubDate to output in Yahoo! Pipes?

故事扮演 提交于 2020-01-02 05:27:12
问题 In one of my RSS feeds in Yahoo! Pipes, I'm formatting dates using the Date Formatter module and using the format %K so they are pubDate-compliant. In Pipe Output, my four dates appears as follows: Wed, 25 Jul 2012 03:30:00 +0000 , Mon, 16 Jul 2012 06:30:00 +0000 , Wed, 11 Jul 2012 07:00:00 +0000 , and Wed, 27 Jun 2012 13:00:00 +0000 . However, in the RSS feed output, none of these dates appear. Are they formatted incorrectly? Why does Yahoo! Pipes not output these dates? 回答1: Okay, so I now

posting a swf in facebook feed through facebook api

馋奶兔 提交于 2020-01-01 17:26:11
问题 I am using the below array and $feeddata = array( 'type'=>'flash', 'method'=>'stream.publish', 'display'=>'iframe', 'link'=> 'https://developers.facebook.com/docs/reference/dialogs/', 'source'=>'http://www.hackerdude.com/channels-test/swfscout_VideoSample.swf', 'picture'=> 'http://fbrell.com/f8.jpg', 'name'=> 'Facebook Dialogs', 'caption'=> 'Reference Documentation', 'description'=> 'Using Dialogs to interact with users.'); and passing it to facebook->api($userid.'/feed', 'POST', $feeddata );

Twitter feed using jQuery

雨燕双飞 提交于 2020-01-01 16:46:41
问题 I'm trying to make a twitter feed that shows 5 tweets by using jQuery to parse a JSON file, provided by twitter. I've made jsFiddle over here. $(document).ready(function () { var k = "http://api.twitter.com/1/statuses/user_timeline.json?screen_name=Twitter&include_rts=1&count=5"; $.getJSON(k, function (data) { $.each(data, function (i, item) { $("#tweetFeed").append("<div class='tweetCloud'><div id='tweetArrow'></div><div id='tweetText'>" + item.text.linkify() + "</div></div>"); }); }); });