Forum Discussion

hari_seenivasan's avatar
hari_seenivasan
Frequent Visitor
9 years ago

Once I have a report URL,  Can I display the report without iframe postMessage?

Once I get the report URL, to display the report can I use server side post request with "message" atribute to obtain the report?

3 Replies

    • hari_seenivasan's avatar
      hari_seenivasan
      Frequent Visitor

      No. I don't want access_token to be embedded into the dom or webpage.

      It's a server variable, I don't want to use the postMessage as it cannot retrieve access_token from server.

      If there is a way to use get/post request from server to load the reports?

       

      • Eric_Zhang's avatar
        Eric_Zhang
        Icon for Microsoft Employee rankMicrosoft Employee

        hari_seenivasan

         

        I'm afraid the answer is No, there isn't.

        Not quite an expert on javascript, however, per the documentation Window.postMessage(), the report page on server by design is listening to the message from postMessage and be ready to reponse. Though you could embedde an report with Javascript API (still need accesstoken) without explicitly calling the postMessage, I'm guessing the code underlying is still use postMessage.  

        So based on my understanding, it is javascript behavior and communication mechanism between the clients' page and embedded iframe, it just has nothing to do with get/post request.