Chrome扩展程序和Cookie

时间:2015-03-23 11:54:07

标签: javascript php google-chrome cookies google-chrome-extension

我已经创建了Chrome扩展程序,并且我尝试使用它来允许用户登录系统。我正在使用chrome.cookies.set设置cookie,然后我试图用PHP读取它 - 但PHP似乎从来没有看到cookie被设置。我已手动验证cookie存在但isset()似乎总是返回false。

chrome.cookies.set({"name":"username","url":"http://127.0.0.1","domain":null, "path": "/", "value":userName},function (cookie){
  console.log(JSON.stringify(cookie));
  console.log(chrome.extension.lastError);
  console.log(chrome.runtime.lastError);
});

我是如何设置Cookie的,这就是我尝试使用PHP获取它的方式:

<?php
    if(isset($_COOKIE["username"])){
        echo "Logged in";
    }
?>

有什么想法吗?这让我感到难过了一段时间。

1 个答案:

答案 0 :(得分:0)

好吧,我从来没有解决过我对Cookie的确切问题,我决定使用OAuth进行身份验证。