Note that there are some explanatory texts on larger screens.

plurals
  1. POCooliris wall fed by Picassa web albums?
    primarykey
    data
    text
    <p>I am trying to expose picassa web album by using Picassa web albums. </p> <p>Following example creates wall with only 2 pictures which represents 2 album main photos:</p> <pre><code>&lt;object id="o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="600" height="450"&gt; &lt;param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf" /&gt; &lt;param name="allowFullScreen" value="true" /&gt; &lt;param name="allowScriptAccess" value="always" /&gt; &lt;embed type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" flashvars="feed=api://picasaweb.google.com/?user=davidinjp" width="600" height="450" allowFullScreen="true" allowScriptAccess="always"&gt; &lt;/embed&gt; &lt;/object&gt; </code></pre> <p>How it's possible to show all pictures from all albums? Seems like Cooliris does not support this, using Media RSS cross domain issue arises:</p> <pre><code>&lt;object id="o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="600" height="450"&gt; &lt;param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf" /&gt; &lt;param name="allowFullScreen" value="true" /&gt; &lt;param name="allowScriptAccess" value="always" /&gt; &lt;embed type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" flashvars="feed=http://picasaweb.google.com/data/feed/base/user/davidinjp?alt=rss&amp;kind=photo&amp;hl=en_GB&amp;access=public" width="600" height="450" allowFullScreen="true" allowScriptAccess="always"&gt; &lt;/embed&gt; &lt;/object&gt; </code></pre> <p>Coolris reference: <a href="http://www.cooliris.com/developer/reference/media-site-apis/" rel="nofollow noreferrer">http://www.cooliris.com/developer/reference/media-site-apis/</a></p> <hr> <p><strong>@jeffamaphone</strong> Thanks, this is what I've done. I have created simple PHP that mirrors feed on my host:</p> <pre><code>&lt;?php $content= file_get_contents('http://picasaweb.google.com/data/feed/base/user/USERNAME?alt=rss&amp;kind=photo&amp;hl=en_GB&amp;access=public'); echo $content; ?&gt; </code></pre> <p>Added crossdomain.xml. Pointed feed to local PHP mirroring script.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload