Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

1. To Create a new plugin which calls an external  web service that return JSON representing images . The API URL is:- http://api.flickr.com/services/feeds/photos_public.gne?jsoncallbackImage Removed.

2. After that i need to pass the received JSON ( representing the images) from the new plugin to my joget form.

...

Code Block
langjavascript
<script type="text/javascript">
$(function() {
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?",
  {
    tags: "gulmarg",
    tagmode: "any",
    format: "json"
  },
  function(data) {
    $.each(data.items, function(i,item){
      $("<img/>").attr("src", item.media.m).appendTo("#images");
      if ( i == 5 ) return false;
    });
  });
})
</script>
<div id="images"></div>
<img src="http://192.168.1.50/WCF/Service1.svc/vf/img?imgid=1" alt="some_text">

but the missing part is as follow:-

1. i need the API call which is (http://api.flickr.com/services/feeds/photos_public.gne?jsoncallbackImage Removed) to be done on a plugin then to pass the returned JSON to the form. Currently i am doing the API call from the javaScript itself, which might cause security problems if the API call contains confidential info which should not be exposed.

...