Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is der any way in which i can get sk parameter of facebook tab page. For example if page URL is this http://www.facebook.com/FacebookStudio?sk=app_127337483972992 then i want value of sk.

Thanks in advance.

share|improve this question

1 Answer

The number following the sk= is the application ID of the app (aka page tab). So just use a indexOf('sk=') command to find the beginning part and strip out using a Left() or a SubString() command. Or you can go crazy and use Regex, extra points for doing it with Regex :)

share|improve this answer
But can we read the parameters of parent frame,the page tabs is an iframe in facebook page. Anyways i got the solution of my problem ,i will pass the app id to page tab url as get parameter. – Mehul Hingu Dec 31 '11 at 7:09
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 15:23

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.