如何允许特定域名访问Drupal 7 API?

huangapple go评论62阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2020年1月3日 15:25:45
  • 转载请务必保留本文链接:https://go.coder-hub.com/59574693.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定