Hi,
The exact same code is working fine for me. What is the exact error
that you are getting?
Anash
On Jul 10, 2:06 am, Vinicius <[EMAIL PROTECTED]> wrote:
> my MakeRequest not this working... help plis !!!
>
> mycode:
>
> <?xml version="1.0" encoding="UTF-8" ?>
> <Module>
> <ModulePrefs title="Fetch Content as Text">
> <Require feature="opensocial-0.7"/>
> </ModulePrefs>
> <Content type="html">
> <![CDATA[
> <div id="content_div"></div>
> <script type="text/javascript">
>
> function makeNormalRequest() {
> var params = {};
> params[gadgets.io.RequestParameters.CONTENT_TYPE] =
> gadgets.io.ContentType.TEXT;
> var url = "http://www.google.com";
> gadgets.io.makeRequest(url, response, params);
> };
>
> function response(obj) {
> //obj.text contains the text of the page that was requested
> var str = obj.text;
> var html = str.substr(0,400);
> document.getElementById('content_div').innerHTML = html;
> };
>
> gadgets.util.registerOnLoadHandler(makeNormalRequest);
> </script>
> ]]>
> </Content>
> </Module>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"OpenSocial Application Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/opensocial-api?hl=en
-~----------~----~----~----~------~----~------~--~---