无法使用Angularjs使用okta登录页面

时间:2018-06-18 12:22:32

标签: angularjs okta-api

我使用AngularJS创建了简单的登录页面与okta api这个POST API集成我传递的参数如下:

  

1)用户名

     

2)密码

     

3)选项:multiOptionalFactorEnroll:true

     

warnBeforePasswordExpired:真

它正在抛出 IN : images[0].np[images[0].np==0] = np.nan OUT: ValueError Traceback (most recent call last) <ipython-input-34-51e6dcef875b> in <module>() ----> 1 images[0].np[images[0].np==0] = np.nan ValueError: cannot convert float NaN to integer ,你能帮我解决这个问题吗?

enter image description here

2 个答案:

答案 0 :(得分:1)

这是一个CORS问题,请在执行发布请求时添加{strong>标题中的"Allow-access-control-origin": "*"以及Check this link and allow your website to access the same

答案 1 :(得分:0)

通过禁用Chrome网络安全性可以绕过Cross Origin问题(假设您在Chrome浏览器中进行测试):

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-web-security --allow-file-access-from-files

但请注意,此方法仅适用于本地计算机和服务器,您需要使用@Neha Tawar提及的方法