Security-Check iFrame not beeing loaded when trying to create new facebook app - facebook

i am trying to create a facebook app, however the security check won't let me. There's an iframe which just will not load.
I have tried it with chrome, edge, safari, disabling McAffee, tried it on my smartphone without wifi connection but nothing worked.
Do you have any tips what i could try or does someone know about this problem?
Here is a screenshot of the error in chrome:
https://imgur.com/tYPG7fT
This is how it looks like in edge:
https://imgur.com/fZvzh8P
It says "Cant show this content in an iframe.
For safari: there is simply nothing where the iframe should be.

Ok problem solved by time. Just tried it again a few hours later and it was working well now.

Using edge instead of chrome solved this for me.

Related

Facebook mobile workaround no longer working

Until today, I was able to add ?ref=ts to a Facebook tab url & it would be mobile-friendly.
Not today. Has anyone else experienced this? Is there a workaround to the workaround?
Link for example: https://www.facebook.com/microartssandbox2015/app/924049424328019/?ref=ts
Works fine on desktop.
However, on mobile, I get:
The page you requested cannot be display right now ...
This has never really worked for me. The general (and well known) workaround is to use an external website and redirect to the Page on desktop. On mobile, you just stay on the external website.

Facebook Like box does not work with Google Chrome

The Facebook Like box for my webpage does not show with Google Chrome, but shows with IE (not sure about others like firefox). I am using the IFrame code supplied by Facebook. I've tried adding http:// to the Facebook iFrame code... I checked my FB settings (age is 13+, no geographic restrictions) I have read on here that others have had a similar problem, but no answer. I also have the same problem with my other websites that have the like box embedded. Is this a Facebook or Google error? Or did I miss something? Thanks!
http://birdofthehand.com/BotHF_News.htm
(the like box should be under the text that reads "the farm stand is closed")
I've found out that it was my recent update of Avast virus scanner that caused the problem. I said yes to installation of an online scanner.
I checked Google Chromes extension, deleted this extension, and now the like box is loading again.
Erling
Denmark
For me it was the DISCONNECT Chrome extension that was causing the problem.
So anyway, usually it's an extension causing this issue!

Facebook application (Static HTML)

I'm trying to create a landing page on facebook with the Static HTML application, but the image does not appear in IE8 show only at 9 and other browsers like Chrome and Firefox.
The application link is: https://www.facebook.com/hyundainic/app_128953167177144.
Yet another application that looks like:
https://www.facebook.com/SomosEskimo/app_367456286664440.
This if displayed in all browsers, except that technically I do not know if it's the same.
I'm editing the html / css and occupy absolute and relative positioning, I thought that this could affect and remove it, but the problem persists forever.
Can someone help me with this?
I think the issue is probably that you are using an absolute, non-SSL URL for the image source, and the links you posted to the app use SSL. If you leave the protocol off (example: "//whatever.com/myimage.jpg" instead of "http://whatever" or "https://whatever") the browser will use https when needed.
However, it looks like your image doesn't work over SSL:
https://hyundai.com.ni/img/quickservice-fb.jpg?id=3
You can try viewing your app using http:// and confirm it displays ok in all targeted browsers to see if this is really your issue.

Unable to open HTML href link in Safari/iPhone

I have created a simple application using Phonegap in XCode using HTML. My code looks like this:
<dd>Office Number</dd>
<dd>Personal Number</dd>
<dd>Log in to your Mail ID</dd>
The first two links are working fine. I am able to dial a number; but the last line is not working. It seems like disabled. In the mobile, after running, it's showing "Log in to your Mail ID" as a tab but nothing happens when I click it.The web address is not going to the Safari browser.
Please help. how can I integrate this link to Safari browser in iPhone like the first two lines.
Thanks in advance
u have to implement child browser in ur application......https://github.com/purplecabbage/phonegap-plugins/tree/master/iPhone/ChildBrowser
it have a option of opening the link in safari also .....if u have any query plz feel free to ask .....

Endless loop in a Facebook game with Firefox

I have a game in Facebook and suddenly a new problem came out. In Chrome, Safari, Opera and Internet Explorer work fine. In Firefox the Facebook page loads good but when the game iframe starts loading, it gets a points that automatically reload the whole page. I can not understand what's happening. Anyone could know the issue?
You need to either accept third party cookies or locate the one cookie it needs to load (seems to be the developers's own website usually - look into the list of cookies currently stored on your computer in ff options) and whitelist(allow) that.
Since that answer is nowhere on the net and I just spent one hour trying to figure it out to fix the same problem I'm putting it here in the hope it'll help.
Well, it is good know problem for me, about half year ago I got the same also with Firefox. In my app real problem was that, firefox with his AJAX action, lost somewhere access token from parent window/frame...
My advice: try to stick access token to AJAX's request too.
Edit in response to comment:
Unfortunatelly, now I can't see any token in url into my app frame... but what I did then was something like that: (using jQuery):
$.get("http://mydomain/getInfo?id=12345 + '&' + (location.href.split('?'))[1])
where location.href.split('?'))[1] add session/access token to my intern AJAX request.
Anyway, if application works fine few days ago, check official facebook dev forum, there is often some cause on facebook side...