I’ve noticed that some sites do not allow embedding via iframe HTML tag.
Is there any other way that could work ? I’ve also tried to load with HTML object tag but it doesn’t work either.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You cannot bypass embedding sites like google in an iframe because they add x-frame-options headers (deny or sameorigin). Browsers that support those headers simply won’t allow it.
https://developer.mozilla.org/en-US/docs/HTTP/X-Frame-Options
If you just need to get data from a page and show it, you could get the data server-side, but this is probably not your intentions.
Good luck.