我正在尝试使用Linkedin的连接API。当我使用make调用时,它返回一个错误:
Unsafe JavaScript attempt to access frame with URL http://www.*example*.com/ from frame with URL https://api.linkedin.com/uas/js/xdrpc.html?v=0.0.2000-RC1.26335-1404#www.*example*.com&xdm_c=default4901&xdm_p=1&mode=cors. The frame requesting access has a protocol of 'https', the frame being accessed has a protocol of 'http'. Protocols must match.
有人知道为什么会出现这个错误吗?
非常感谢您的帮助!
答案 0 :(得分:0)
它与http / https位无关。
添加“& callback =?”到你打电话的网址,它会做一些魔术!
喜欢这个!
var url = "https://api.instagram.com/v1/users/" + id + "?access_token=" + instagramtoken + + "&callback=?"
在stackoverlfow上的某个地方看到这个解决方案,但是想知道在哪里。它解决了我的问题!
HTH