pbootcms网站模板|日韩1区2区|织梦模板||网站源码|日韩1区2区|jquery建站特效-html5模板网

    • <bdo id='97iOt'></bdo><ul id='97iOt'></ul>

      <i id='97iOt'><tr id='97iOt'><dt id='97iOt'><q id='97iOt'><span id='97iOt'><b id='97iOt'><form id='97iOt'><ins id='97iOt'></ins><ul id='97iOt'></ul><sub id='97iOt'></sub></form><legend id='97iOt'></legend><bdo id='97iOt'><pre id='97iOt'><center id='97iOt'></center></pre></bdo></b><th id='97iOt'></th></span></q></dt></tr></i><div class="wy66gko" id='97iOt'><tfoot id='97iOt'></tfoot><dl id='97iOt'><fieldset id='97iOt'></fieldset></dl></div>

      <small id='97iOt'></small><noframes id='97iOt'>

    1. <tfoot id='97iOt'></tfoot>

        <legend id='97iOt'><style id='97iOt'><dir id='97iOt'><q id='97iOt'></q></dir></style></legend>

        Github API 和 Access-Control-Allow-Origin

        Github API and Access-Control-Allow-Origin(Github API 和 Access-Control-Allow-Origin)
        1. <tfoot id='7HwZU'></tfoot>

              • <bdo id='7HwZU'></bdo><ul id='7HwZU'></ul>
                <i id='7HwZU'><tr id='7HwZU'><dt id='7HwZU'><q id='7HwZU'><span id='7HwZU'><b id='7HwZU'><form id='7HwZU'><ins id='7HwZU'></ins><ul id='7HwZU'></ul><sub id='7HwZU'></sub></form><legend id='7HwZU'></legend><bdo id='7HwZU'><pre id='7HwZU'><center id='7HwZU'></center></pre></bdo></b><th id='7HwZU'></th></span></q></dt></tr></i><div class="ykmm8cu" id='7HwZU'><tfoot id='7HwZU'></tfoot><dl id='7HwZU'><fieldset id='7HwZU'></fieldset></dl></div>
              • <small id='7HwZU'></small><noframes id='7HwZU'>

                  <tbody id='7HwZU'></tbody>

                • <legend id='7HwZU'><style id='7HwZU'><dir id='7HwZU'><q id='7HwZU'></q></dir></style></legend>

                • 本文介紹了Github API 和 Access-Control-Allow-Origin的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  這可能是一個簡單的(一系列)問題,但我無法理解它.

                  this probably is a simple (series of) question(s) but I can't wrap my head around it.

                  我正在嘗試從我網站上托管的網絡應用程序訪問 github api.簡而言之,這是代碼:

                  I'm trying to access the github api from a web app hosted on my site. This is the code in a nutshell:

                  <!DOCTYPE html>
                  <html>
                  <head>
                    <style>p { color:red; }</style>
                    <script src="http://code.jquery.com/jquery-latest.js"></script>
                    <script>
                    $(document).ready(function () {
                  
                  $.ajax( {url :'https://api.github.com/repos/janesconference/kievIIPlugins/commits', dataType: "json", cache: false, success: function (data, textStatus, jqXHR)
                          {
                              var lastCommitSha = data[0].sha;
                              $("p").text("Last commit SHA: " + lastCommitSha);
                          }
                      });
                  });
                    </script>
                  
                  </head>
                  <body>
                    <p>Ajax request not (yet) executed.</p>
                  
                  </body>
                  </html>
                  

                  如果我將瀏覽器指向在我的 Dropbox 帳戶上上傳的這個簡單頁面一切都好.相反,如果我將瀏覽器指向 在我的網站上 上傳的這個簡單頁面,我會得到臭名昭著的 Access-Control-Allow-Origin 異常:

                  If I point my browser to this simple page uploaded on my dropbox account everything is ok. If, instead, I point my browser to this simple page uploaded on my site, I get the infamous Access-Control-Allow-Origin exception:

                  XMLHttpRequest cannot load https://api.github.com/repos/janesconference/kievIIPlugins/commits?_=1360060011783. Origin http://bitterspring.net is not allowed by Access-Control-Allow-Origin.
                  

                  所以,問題:

                  • 為什么它可以在 Dropbox 上運行?
                  • 我了解使用 CORS 甚至可以在網站上使用.這是將 Access-Control-Allow-Origin: *.github.com 放在我的 Apache 配置或類似的東西上的問題.但是,正如 en.wiki 所引用的,
                  • Why does it work on Dropbox?
                  • I understand that with CORS it would work even on the website. This is a matter of putting Access-Control-Allow-Origin: *.github.com on my Apache configuration or something like that. But, as quoted from en.wiki,

                  但是,這可能不適合涉及安全問題的情況

                  However, this might not be appropriate for situations in which security is a concern

                  • 有沒有辦法在不更改 Apache 配置的情況下做到這一點?可能,我無法觸摸托管站點的 Apache conf,并且總是存在安全問題.這樣做的正確方法是什么?
                  • 推薦答案

                    為了讓 CORS 為您的網站工作(例如 http://example.com),您必須通過在此處創建 GitHub OAuth 應用程序來啟用它:https://github.com/settings/applications

                    In order to get CORS working for your site (e.g. http://example.com), you have to enable it by creating a GitHub OAuth application here: https://github.com/settings/applications

                    由于您使用 GitHub 應用程序來使 CORS 工作(不使用它來啟用 OAuth 本身),您只需在創建申請表"的所有三個字段中輸入您網站的 URL:

                    Since you are using a GitHub applications to get CORS to work (not using it for enabling OAuth itself), you can just enter your site's URL in all three fields in the "Create Application form":

                    • 名稱:http://example.com
                    • 網址:http://example.com
                    • 回調網址:http://example.com

                    請注意,如果您打算使用 OAuth 功能,則需要以不同的方式設置回調 URL.

                    Note that if you intend to use OAuth functionality, you need to setup Callback URL differently.

                    在此之后,您應該能夠從您的站點 http://example.com 向 GitHub API 發送 AJAX 請求.

                    After this, you should be able to send AJAX requests to GitHub APIs from your site http://example.com.

                    這篇關于Github API 和 Access-Control-Allow-Origin的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                    【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Is it possible for XHR HEAD requests to not follow redirects (301 302)(XHR HEAD 請求是否有可能不遵循重定向 (301 302))
                  NETWORK_ERROR: XMLHttpRequest Exception 101(NETWORK_ERROR:XMLHttpRequest 異常 101)
                  XMLHttpRequest 206 Partial Content(XMLHttpRequest 206 部分內容)
                  XmlHttpRequest onprogress interval(XmlHttpRequest onprogress 間隔)
                  How can I modify the XMLHttpRequest responsetext received by another function?(如何修改另一個函數接收到的 XMLHttpRequest 響應文本?)
                  What is the difference between XMLHttpRequest, jQuery.ajax, jQuery.post, jQuery.get(XMLHttpRequest、jQuery.ajax、jQuery.post、jQuery.get 有什么區別)
                  1. <i id='WFq5L'><tr id='WFq5L'><dt id='WFq5L'><q id='WFq5L'><span id='WFq5L'><b id='WFq5L'><form id='WFq5L'><ins id='WFq5L'></ins><ul id='WFq5L'></ul><sub id='WFq5L'></sub></form><legend id='WFq5L'></legend><bdo id='WFq5L'><pre id='WFq5L'><center id='WFq5L'></center></pre></bdo></b><th id='WFq5L'></th></span></q></dt></tr></i><div class="qm2uiei" id='WFq5L'><tfoot id='WFq5L'></tfoot><dl id='WFq5L'><fieldset id='WFq5L'></fieldset></dl></div>

                        <bdo id='WFq5L'></bdo><ul id='WFq5L'></ul>
                          <tbody id='WFq5L'></tbody>

                        <small id='WFq5L'></small><noframes id='WFq5L'>

                      • <tfoot id='WFq5L'></tfoot>

                        • <legend id='WFq5L'><style id='WFq5L'><dir id='WFq5L'><q id='WFq5L'></q></dir></style></legend>

                          • 主站蜘蛛池模板: 食安观察网| 北京签证代办_签证办理_商务签证_旅游签证_寰球签证网 | 番茄畅听邀请码怎么输入 - Dianw8.com | 钢制暖气片散热器_天津钢制暖气片_卡麦罗散热器厂家 | 传爱自考网_传爱自学考试网 | 品牌策划-品牌设计-济南之式传媒广告有限公司官网-提供品牌整合丨影视创意丨公关活动丨数字营销丨自媒体运营丨数字营销 | 细石混凝土泵_厂家_价格-烟台九达机械有限公司 | 浇钢砖,流钢砖_厂家价低-淄博恒森耐火材料有限公司 | 横河变送器-横河压力变送器-EJA变送器-EJA压力变送器-「泉蕴仪表」 | 物流公司电话|附近物流公司电话上门取货 | 压力控制器,差压控制器,温度控制器,防爆压力控制器,防爆温度控制器,防爆差压控制器-常州天利智能控制股份有限公司 | 丁基胶边来料加工,医用活塞边角料加工,异戊二烯橡胶边来料加工-河北盛唐橡胶制品有限公司 | 设定时间记录电子秤-自动累计储存电子秤-昆山巨天仪器设备有限公司 | 山楂片_雪花_迷你山楂片_山楂条饼厂家-青州市丰源食品厂 | 海南在线 海南一家| 阻垢剂,反渗透阻垢剂,缓蚀阻垢剂-山东普尼奥水处理科技有限公司 真空粉体取样阀,电动楔式闸阀,电动针型阀-耐苛尔(上海)自动化仪表有限公司 | 2-羟基泽兰内酯-乙酰蒲公英萜醇-甘草查尔酮A-上海纯优生物科技有限公司 | 淋巴细胞分离液_口腔医疗器材-精欣华医疗器械(无锡)有限公司 | 自清洗过滤器-全自动自清洗过反冲洗过滤器 - 中乂(北京)科技有限公司 | 楼承板-开口楼承板-闭口楼承板-无锡海逵 | 旋转/数显粘度计-运动粘度测定仪-上海平轩科学仪器 | 长城人品牌官网| 臭氧老化试验箱,高低温试验箱,恒温恒湿试验箱,防水试验设备-苏州亚诺天下仪器有限公司 | 电子厂招聘_工厂招聘_普工招聘_小时工招聘信息平台-众立方招工网 | 陕西自考报名_陕西自学考试网| 深圳APP开发_手机软件APP定制外包_小程序开发公司-来科信 | 回转窑-水泥|石灰|冶金-巩义市瑞光金属制品有限责任公司 | 防勒索软件_数据防泄密_Trellix(原McAfee)核心代理商_Trellix(原Fireeye)售后-广州文智信息科技有限公司 | 网架支座@球铰支座@钢结构支座@成品支座厂家@万向滑动支座_桥兴工程橡胶有限公司 | 西安耀程造价培训机构_工程预算实训_广联达实作实操培训 | 山东PE给水管厂家,山东双壁波纹管,山东钢带增强波纹管,山东PE穿线管,山东PE农田灌溉管,山东MPP电力保护套管-山东德诺塑业有限公司 | 成都办公室装修-办公室设计-写字楼装修设计-厂房装修-四川和信建筑装饰工程有限公司 | 高防护蠕动泵-多通道灌装系统-高防护蠕动泵-www.bjhuiyufluid.com慧宇伟业(北京)流体设备有限公司 | 合肥卓创建筑装饰,专业办公室装饰、商业空间装修与设计。 | 仿真植物|仿真树|仿真花|假树|植物墙 - 广州天昆仿真植物有限公司 | 除尘器布袋骨架,除尘器滤袋,除尘器骨架,电磁脉冲阀膜片,卸灰阀,螺旋输送机-泊头市天润环保机械设备有限公司 | 石油/泥浆/不锈钢防腐/砂泵/抽砂泵/砂砾泵/吸砂泵/压滤机泵 - 专业石油环保专用泵厂家 | 水质传感器_水质监测站_雨量监测站_水文监测站-山东水境传感科技有限公司 | 定时排水阀/排气阀-仪表三通旋塞阀-直角式脉冲电磁阀-永嘉良科阀门有限公司 | 二手色谱仪器,十万分之一分析天平,蒸发光检测器,电位滴定仪-湖北捷岛科学仪器有限公司 | 彭世修脚_修脚加盟_彭世修脚加盟_彭世足疗加盟_足疗加盟连锁_彭世修脚技术培训_彭世足疗 |