cors - Azure 函数 : CORS: How to support "Access-Control-Allow-Credentials" header AND OPTIONS pre-flight?

标签 cors azure-functions preflight

已编辑

因为 StackOverflow 不喜欢你删除东西。这是我自己的愚蠢。

我学到了什么:

  • OPTIONS 方法目前似乎不适用于 Azure
    在本地运行 Azure 函数时的函数 Cli。
  • I created a GitHub Issue for this .
  • Azure 上的 Azure Functions 支持 OPTIONS 请求,非常好。当您在通过代理手动测试时搞砸并在请求的 HOST 中有错误的 header 时,他们只是不理解它:-P。


  • 我有一个 Azure 函数,它需要 cookie 来携带 session 详细信息。因此,我需要将标题“Access-Control-Allow-Credentials”设置为 true。

    如此处详述:
    https://github.com/Azure/azure-webjobs-sdk-script/issues/620

    如果您通过删除所有 CORS url 来禁用函数应用程序的默认“应用程序服务”CORS 设置,它将允许您设置与 CORS 相关的 header ,例如“Access-Control-Allow-Credentials”。这很好用。

    但是,禁用 CORS 设置后,您需要手动处理所有 CORS 功能。问题在于 Azure 函数似乎不允许您在定义函数时使用 OPTIONS 动词。因此,似乎没有办法处理 CORS 飞行前请求。

    有什么推荐的解决方法吗?

    仅供引用,这是我的function.json:
    {
      "disabled":false,
      "bindings":[
        {
          "name": "req",
          "type": "httpTrigger",
          "direction": "in",
          "authLevel": "anonymous",
          "methods": [ "OPTIONS" ],
          "route": "1.0/myFunction"
        },
        {
          "name": "res",
          "type": "http",
          "direction": "out"
        }
      ]
    }
    

    这是代码:
    'use strict';
    
    module.exports = function(context, req){
        var shared = require('../auth-shared-libraries');
        var cors_url = shared.getCORSUrl(context);
        context.res = {
            status: 200,
            headers: {
                "Access-Control-Allow-Credentials" : "true",
                "Access-Control-Allow-Origin" : cors_url,
                "Access-Control-Allow-Methods" : "POST, OPTIONS",
                "Access-Control-Allow-Headers" : "Content-Type, Set-Cookie",
                "Access-Control-Max-Age" : "86400",
                "Vary" : "Accept-Encoding, Origin",
                "Content-Type" : "application/json"
            },
            body : JSON.stringify(req)
        };
        context.done();
    }
    

    这是发送给它的示例请求:
    OPTIONS /api/1.0/myFunction HTTP/1.1
    Host: localhost:7071
    User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-US,en;q=0.5
    Access-Control-Request-Method: POST
    Origin: http://localhost:9000
    Connection: close
    

    如果我针对托管在 Azure 上的 Azure-Function 运行它,这是我得到的响应:
    HTTP/1.1 404 Site Not Found
    Content-Type: text/html
    Server: Microsoft-IIS/8.0
    Date: Tue, 14 Feb 2017 01:57:14 GMT
    Connection: close
    Content-Length: 5147
    
    <!DOCTYPE html>
    <html>
    <head>
        <title>Microsoft Azure Web App - Error 404</title>
        <style type="text/css">
            html {
                height: 100%;
                width: 100%;
            }
    
            #feature {
                width: 960px;
                margin: 75px auto 0 auto;
                overflow: auto;
            }
    
            #content {
                font-family: "Segoe UI";
                font-weight: normal;
                font-size: 22px;
                color: #ffffff;
                float: left;
                width: 460px;
                margin-top: 68px;
                margin-left: 0px;
                vertical-align: middle;
            }
    
                #content h1 {
                    font-family: "Segoe UI Light";
                    color: #ffffff;
                    font-weight: normal;
                    font-size: 60px;
                    line-height: 48pt;
                    width: 800px;
                }
    
            p a, p a:visited, p a:active, p a:hover {
                color: #ffffff;
            }
    
            #content a.button {
                background: #0DBCF2;
                border: 1px solid #FFFFFF;
                color: #FFFFFF;
                display: inline-block;
                font-family: Segoe UI;
                font-size: 24px;
                line-height: 46px;
                margin-top: 10px;
                padding: 0 15px 3px;
                text-decoration: none;
            }
    
                #content a.button img {
                    float: right;
                    padding: 10px 0 0 15px;
                }
    
                #content a.button:hover {
                    background: #1C75BC;
                }        
        </style>
        <script type="text/javascript">
            function toggle_visibility(id) {
                var e = document.getElementById(id);
                if (e.style.display == 'block')
                    e.style.display = 'none';
                else
                    e.style.display = 'block';
            }
        </script>
    </head>
    <body bgcolor="#00abec">
        <div id="feature">
            <div id="content">
                <h1>Error 404 - Web app not found.</h1>
                <p>The web app you have attempted to reach is not available in this Microsoft Azure App Service region. This could be due to one of several reasons:
                <p>
                    1. The web app owner has registered a custom domain to point to the Microsoft Azure App Service, but has not yet configured Azure to recognize it. <a href="#" onclick="toggle_visibility('moreone');">Click here to read more</a></abbr>.
                    <div id="moreone" style="display:none">
                        <font size=2>
                          When an app owner wants to use a custom domain with a <a href="http://www.windowsazure.com/en-us/services/web-sites/">Microsoft Azure Web Apps</a> web app, Azure needs to be configured to recognize the custom domain name, so that it can route the request to the appropriate server in the region. After registering the domain with a domain provider and configuring a DNS CNAME record to point to the app&#39;s Azurewebsites.net address (for example, contoso.azurewebsites.net), the web app owner also needs to go to the Azure Portal and configure the app for the new domain. <a href="http://www.windowsazure.com/en-us/documentation/articles/web-sites-custom-domain-name/">Click here</a> to learn more about configuring the custom domains for a web app.
                         </font>
    </div>
            <p>
              2. The web app owner has moved the web app to a different region, but the DNS cache is still directing to the old IP Address that was used in the previous region. <a href="#" onclick="toggle_visibility('moretwo');">Click here to read more.</a>
                <div id="moretwo" style="display:none">
                    <font size=2>
                        With <a href="http://www.windowsazure.com/en-us/services/web-sites/">Web Apps</a>, the app is stored in a datacenter located in the region that the web app owner has selected when creating the app, and Azure�s DNS server resolves the web app address that was chosen for it to that datacenter. DNS servers are in charge of resolving the name of the server the user is trying to reach into an IP address, but clients cache this information in order to be able to load the page as fast as possible. If this app was deleted and re-created in another region, the new app will have a different IP address, but the client might still be caching the old IP address.
    
                        First, try clearing the cache on your client <a href="http://technet.microsoft.com/en-us/library/cc781949(v=ws.10).aspx">as described here</a>. If this does not help, this is probably due to the caching done on an intermediate DNS server such as the one used by your Internet Service Provider. If so, this issue should clear up soon, once the DNS cache reaches its time-to-live period. Please try to visit the app again in approximately one hour. If you continue to receive this error page, please contact <a href="http://www.windowsazure.com/en-us/support/options/">Microsoft support</a>.
                        </font>
                </div>
            </div>
         </div>
    </body>
    </html>
    

    如果我针对本地运行的 Azure-Functions-Cli 运行请求,这是我得到的响应:

    注意:它提示 Origin,但我不知道用于设置 CORS 的本地开发的配置。如果有的话,我不确定当这似乎需要手动操作时如何将其转化为 Azure。
    HTTP/1.1 400 Bad Request
    Content-Type: application/json; charset=utf-8
    Server: Microsoft-HTTPAPI/2.0
    Date: Tue, 14 Feb 2017 01:28:12 GMT
    Connection: close
    Content-Length: 64
    
    {"Message":"The origin 'http://localhost:9000' is not allowed."}
    

    最佳答案

    我对使用 OPTIONS 动词没有问题。

    您能否确保您的 function.json 在“方法”数组中包含“选项”,如下所示:

    {
      "bindings": [
        {
          "authLevel": "anonymous",
          "name": "req",
          "type": "httpTrigger",
          "direction": "in",
          "methods": ["get", "post", "options"]
        }
      ]
    }
    

    或者,您可以完全删除“方法”数组并允许所有方法。

    关于cors - Azure 函数 : CORS: How to support "Access-Control-Allow-Credentials" header AND OPTIONS pre-flight?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41901054/

    相关文章:

    google-chrome - 最新 Chrome 85 更新后的 CORS 问题

    azure - 无法从 Azure 函数应用连接 Azure Database for PostgreSQL 服务器

    angular - Spring boot - 预检响应没有 HTTP ok 状态

    angularjs - "Same Domain"上的 Angular 选项 http 预检?

    javascript - jQuery Ajax 问题在本地加载 XML - Safari 版本 11.0 - 错误 : XMLHttpRequest cannot load . xml。预检响应不成功

    jQuery CORS 内容类型选项

    angular - 在 Azure Active Directory 上启用 CORS

    azure - 在 azure 功能中,是否可以使用应用程序设置作为绑定(bind)路径的一部分?

    python - 在 Azure Functions 中使用 Pandas

    java - Spring Boot - 如何使用 cors 和 spring security 修复 session bean