You're only use the first 400 characters of the text returned, which
is probably CSS rules and other elements that don't render. If you use
the following line instead, you should see actual content:

document.getElementById('content_div').innerHTML = obj.text;

Cheers!
- Jason

On Jul 9, 2:07 pm, 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 
"Orkut Developer Forum" 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-orkut?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to