3

我正在尝试使用 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.

有谁知道为什么会发生这个错误?

非常感谢你的帮助!

4

1 回答 1

0

它与 http / https 位无关。

添加“&callback=?” 到你正在调用的 URL,它会做一些魔法!

像这样!

var url = "https://api.instagram.com/v1/users/" + id + "?access_token=" + instagramtoken +  + "&callback=?"

在 stackoverlfow 的某个地方看到了这个解决方案,但不记得在哪里。它解决了我的问题!

hth

于 2013-04-12T01:39:18.383 回答