英文:
How to allow particular domain to access drupal 7 API?
问题
我已创建了一个服务,用于提供关于订阅者的信息,但我想允许我的2或3个不同应用程序访问这个服务,而不是公开访问。
英文:
I have created a service, which gives the information about subscribers but I want to allow to access this service to 2 or 3 my different applications, not to the public.
答案1
得分: 1
跨源资源共享(CORS)是一种机制,允许网页向另一个域名发出XMLHttpRequest请求。这种“跨域”请求在没有CORS机制的情况下会被Web浏览器禁止,根据同源安全策略。
您可以使用cors模块。
该模块提供了一个配置页面,用于将域名映射到路径,并添加必要的Access-Control-Allow-Origin头。
英文:
Cross-origin resource sharing (CORS) is a mechanism that allows a web page to make XMLHttpRequests to another domain. Such "cross-domain" requests would otherwise be forbidden by web browsers, per the same origin security policy.
you can use cors module
This module provides a configuration page to map domains to paths and add the necessary Access-Control-Allow-Origin header.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论