Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If a user clicks 'Accept' on a request, they will see an iframe with my site in it.

The facebook url (that has the iframe), looks something like this:

https://apps.facebook.com/[request_id]/?fb_source=notification&request_ids=[request_ids]&ref=notif&app_request_type=user_to_user&notif_t=app_request

How can i get the 'request_id' from the iframe url??

Is there a method/API for that in the JS library?

share|improve this question

1 Answer

up vote 1 down vote accepted

If you are using php

you can retrieve request_id by $_GET['request_id'] or $_REQUEST['request_id']

if you are using javascript

This is just one implementation of getting requests parameters in javascript, there are better implementations as well, i stated an example.

var Request = { 
    parameter: function(name) {
        return this.parameters()[name];
    },

    parameters: function() {
        var result = {};
        var url = window.location.href;
        var parameters = url.slice(url.indexOf('?') + 1).split('&');

        for(var i = 0;  i < parameters.length; i++) {
            var parameter = parameters[i].split('=');
            result[parameter[0]] = parameter[1];
        }
        return result;
    }
 }

var request_id = parameters['request_id'];

Get url from iframe

document.getElementById("iframe_id").contentWindow.location.href

Hope this is what you require

share|improve this answer
Unfortunately this didn't work (the javascript part). It gets the URL of my website, not the URL of the iFrame. Any ideas? – Vivendi Apr 25 '12 at 9:02
isn't the url of the iframe present in its src attr ? updated my answer – Dhiraj Bodicherla Apr 25 '12 at 9:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.