CodeIgniter REST API库Ajax PUT抛出403 Forbidden

时间:2012-02-03 18:01:26

标签: php ajax codeigniter rest

我让库的其余部分完全正常工作,只是尝试生成api键,并在通过ajax执行时抛出403禁止。

({"status":false,"error":"Invalid API Key."})

我将它追溯到REST_Controller下的_remap函数..几乎就像我错误地调用了url一样?

工作流程: user visits site1.com -> registers for account -> generates api key for their domain -> key recorded in db -> key displayed

以下表格将在site1.com上注册一个他们点击“生成密钥”的帐户。

ajax电话:

/**
 * Generate an API Key for Us to use
 */

 $("#submitGetApiKey").click(function(){
    $.ajax({
        url: "http://dev.site1.com/api/key",
        crossDomain: true,
        type: "PUT",
        dataType: "jsonp",
        error: function(XMLHttpRequest, textStatus, errorThrown){
            alert(errorThrown);
        },
        success: function(data){
            for (var i = keys.length - 1; i >= 0; i--) {
                console.log(keys[i]);
            };
        }
    });
 });

GitHub上的REST-SERVER:https://github.com/philsturgeon/codeigniter-restserver

专门查看application/controllers/api/key.php

下的key.php

应与此流程相关的key.php文件的片段:

/**
 * Key Create
 *
 * Insert a key into the database.
 *
 * @access  public
 * @return  void
 */
public function index_put()
{
    // Build a new key
    $key = self::_generate_key();

    // If no key level provided, give them a rubbish one
    $level = $this->put('level') ? $this->put('level') : 1;
    $ignore_limits = $this->put('ignore_limits') ? $this->put('ignore_limits') : 1;

    // Insert the new key
    if (self::_insert_key($key, array('level' => $level, 'ignore_limits' => $ignore_limits)))
    {
        $this->response(array('status' => 1, 'key' => $key), 201); // 201 = Created
    }

    else
    {
        $this->response(array('status' => 0, 'error' => 'Could not save the key.'), 500); // 500 = Internal Server Error
    }
}

响应/请求标头

Request URL:http://dev.mapitusa.com/api/key
Request Method:PUT
Status Code:403 Forbidden
Request Headersview source
Accept:application/json, text/javascript, */*; q=0.01
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Connection:keep-alive
Content-Length:0
Cookie:ci_session=a%3A4%3A%7Bs%3A10%3A%22session_id%22%3Bs%3A32%3A%22e165df34aa4fda5936e940658030f83d%22%3Bs%3A10%3A%22ip_address%22%3Bs%3A9%3A%22127.0.0.1%22%3Bs%3A10%3A%22user_agent%22%3Bs%3A118%3A%22Mozilla%2F5.0+%28Macintosh%3B+Intel+Mac+OS+X+10_7_3%29+AppleWebKit%2F535.19+%28KHTML%2C+like+Gecko%29+Chrome%2F18.0.1025.3+Safari%2F535.19%22%3Bs%3A13%3A%22last_activity%22%3Bi%3A1328291821%3B%7Dac0f163b112dbd3769e67f4bb7122db2
Host:dev.mapitusa.com
Origin:http://dev.mapitusa.com
Referer:http://dev.mapitusa.com/api_test.html
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.3 Safari/535.19
Response Headersview source
Cache-Control:max-age=0, public
Connection:Keep-Alive
Content-Encoding:gzip
Content-Length:69
Content-Type:application/json
Date:Fri, 03 Feb 2012 18:03:54 GMT
Expires:Fri, 03 Feb 2012 18:03:54 GMT
Keep-Alive:timeout=5, max=98
Server:Apache
Set-Cookie:ci_session=a%3A4%3A%7Bs%3A10%3A%22session_id%22%3Bs%3A32%3A%22f2f466f7b97b89f2a9b557d2d9a0dbcc%22%3Bs%3A10%3A%22ip_address%22%3Bs%3A9%3A%22127.0.0.1%22%3Bs%3A10%3A%22user_agent%22%3Bs%3A118%3A%22Mozilla%2F5.0+%28Macintosh%3B+Intel+Mac+OS+X+10_7_3%29+AppleWebKit%2F535.19+%28KHTML%2C+like+Gecko%29+Chrome%2F18.0.1025.3+Safari%2F535.19%22%3Bs%3A13%3A%22last_activity%22%3Bi%3A1328292234%3B%7D6821b96c7e58b55f1767eb265ffdb79e; expires=Fri, 03-Feb-2012 20:03:54 GMT; path=/
Status:403
Vary:Accept-Encoding,User-Agent
X-Powered-By:PHP/5.3.6
X-UA-Compatible:IE=Edge,chrome=1

4 个答案:

答案 0 :(得分:3)

我最终发现403被禁止是因为我没有提供api密钥来生成密钥..

有点暧昧,因为Phil的文档没有说明在生成密钥之前需要现有的api密钥..

我只是在db中的表中创建了一个伪造的密钥,并在调用/ key / index时引用了它?X-API-KEY = boguskey

答案 1 :(得分:2)

我已经解决了生成api密钥的问题。 我正在使用Phil Sturgeon的REST API服务器。 使用ajax调用来调用密钥控制器:

$("#submitGetApiKey").click(function(){
    $.ajax({
        url: "http://sitename.com/api/key/index?X-API-KEY=your_key_here",
        crossDomain: true,  /* remove this if using the same domain*/
        type: "PUT",
        dataType: "jsonp",
        error: function(XMLHttpRequest, textStatus, errorThrown){
            alert(errorThrown);
        },
        success: function(data){
            for (var i = keys.length - 1; i >= 0; i--) {
                console.log(keys[i]);
            };
        }
    });
 });

内部钥匙控制器: 搜索函数_generate_key()并检查$ this-> load-> helper('security');.必须加载安全助手才能使用do_hash,否则会出现500内部服务器错误。

public function index_put()
{
    // Build a new key
    $key = self::_generate_key();

    // If no key level provided, give them a rubbish one
    $level = $this->put('level') ? $this->put('level') : 1;
    $ignore_limits = $this->put('ignore_limits') ? $this->put('ignore_limits') : 1;

    // Insert the new key
    if (self::_insert_key($key, array('level' => $level, 'ignore_limits' => $ignore_limits)))
    {
        $this->response(array('status' => 1, 'key' => $key), 201); // 201 = Created
    }

    else
    {
        $this->response(array('status' => 0, 'error' => 'Could not save the key.'), 500); // 500 = Internal Server Error
    }
}

此外,您可以通过在密钥控制器中进行少量更改,在浏览器的地址栏中呼叫http://sitename.com/api/keyindex?X-API-KEY=your_key_here 您可以使用index_get替换函数名index_put。

由于

答案 2 :(得分:0)

如果您是从其他域名调用此内容,则可能会遇到一些XSS问题。您可能必须从您自己的服务器运行它并从其自己的域调用该函数或可能使用JSONP功能。

更新:您是否可以使用NET标签在Firebug中查看交易? 你得到JSON回来了吗? 有时你必须添加回调=?到网址请求: http://dev.site1.com/api/key?callback=

Update2 :您是否可以在浏览器中显示该页面:(http://dev.mapitusa.com/api/key) 如果您收到相同的错误,您应该尝试为该站点提供777(完全读/写)权限。

答案 3 :(得分:0)

这听起来像是一个浏览器问题。可能是XMLHttpRequest堆栈中PUT的错误实现。

我会尝试将其快速转换为POST以查看它是否有效。最好不要为了兼容性目的而将其作为POST保留。