Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/274.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
使用curl-php自动登录远程网站_Php_Facebook_Curl - Fatal编程技术网

使用curl-php自动登录远程网站

使用curl-php自动登录远程网站,php,facebook,curl,Php,Facebook,Curl,我是旋度概念的新手。现在我正在尝试使用php curl远程登录facebook。我已经提到,,,但这并不能消除我的疑虑 我的代码如下: define('HOME' , dirname(__FILE__)); //Create a curl object $ch = curl_init(); if(is_callable('curl_init')){ echo "Enabled"."<br>"; } else { echo "Not ena

我是旋度概念的新手。现在我正在尝试使用php curl远程登录facebook。我已经提到,,,但这并不能消除我的疑虑

我的代码如下:

 define('HOME' , dirname(__FILE__));

 //Create a curl object
 $ch = curl_init();
 if(is_callable('curl_init')){
     echo "Enabled"."<br>";
   }
  else
   {
     echo "Not enabled"."</br>";
   }

    $login_url = 'https://www.facebook.com/login/';

    //These are the post data username and password
    $post_data = array('email'=>'MY_EMAIL_ID','pass'=>'gdfgg');

    //Set the useragent
    $agent = $_SERVER["HTTP_USER_AGENT"];
    //echo $agent;

    curl_setopt($ch, CURLOPT_USERAGENT, $agent);

    //Set the URL
    curl_setopt($ch, CURLOPT_URL, $login_url );

    //This is a POST query
    curl_setopt($ch, CURLOPT_POST, 1 );

    //Set the post data
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);

    //We want the content after the query
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

    //Follow Location redirects
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

    /*
    Set the cookie storing files
    Cookie files are necessary since we are logging and session data needs to be saved
    */

    curl_setopt($ch, CURLOPT_COOKIEJAR,  HOME. '/cookie.txt');
    curl_setopt($ch, CURLOPT_COOKIEFILE,  HOME. '/cookie.txt');

    //Execute the action to login
    $postResult = curl_exec($ch);

    curl_close($ch);
    echo $postResult;
define('HOME',目录名(_文件__));
//创建卷曲对象
$ch=curl_init();
if(可调用('curl\u init')){
回显“已启用”。
; } 其他的 { 回显“未启用”。
”; } $login\u url='1https://www.facebook.com/login/'; //这些是post数据的用户名和密码 $post_data=array('email'=>'MY_email_ID','pass'=>'gdfgg'); //设置用户代理 $agent=$\u服务器[“HTTP\u用户\u代理”]; //echo$代理; curl_setopt($ch,CURLOPT_USERAGENT,$agent); //设置URL curl_setopt($ch,CURLOPT_URL,$login_URL); //这是一个POST查询 卷曲设置($ch,卷曲设置桩,1); //设置post数据 curl_setopt($ch,CURLOPT_POSTFIELDS,$post_data); //我们需要查询后的内容 curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); //跟踪位置重定向 curl_setopt($ch,CURLOPT_FOLLOWLOCATION,1); /* 设置存储文件的cookie Cookie文件是必需的,因为我们正在记录,并且需要保存会话数据 */ curl_setopt($ch,CURLOPT_COOKIEJAR,HOME.'/cookie.txt'); curl_setopt($ch,CURLOPT_COOKIEFILE,HOME.'/cookie.txt'); //执行要登录的操作 $postResult=curl\u exec($ch); 卷曲关闭($ch); echo$postResult;
当我签入FirefoxDOM部分时,它显示

在我的cookie.txt中,我没有代码,它是空的,即使我将权限更改为all

问题1:上述代码将做什么

问题2:如何在DOM中检查其是否工作


问题3:它将在本地工作?

如果没有身份验证(OAuth)和应用程序配置,Facebook将永远不会接受任何请求

下面将给你一些关于使用facebook开发网站登录的想法

作为开发人员登录facebook:

此外,您应该参考

您必须先创建应用程序
https://developers.facebook.com/apps/

<!DOCTYPE html>
<html>
<head>
<title>Facebook Login JavaScript Example</title>
<meta charset="UTF-8">
</head>
<body>
<script>
  // This is called with the results from from FB.getLoginStatus().
  function statusChangeCallback(response) {
    console.log('statusChangeCallback');
    console.log(response);
    // The response object is returned with a status field that lets the
    // app know the current login status of the person.
    // Full docs on the response object can be found in the documentation
    // for FB.getLoginStatus().
    if (response.status === 'connected') {
      // Logged into your app and Facebook.
      testAPI();
    } else if (response.status === 'not_authorized') {
      // The person is logged into Facebook, but not your app.
      document.getElementById('status').innerHTML = 'Please log ' +
        'into this app.';
    } else {
      // The person is not logged into Facebook, so we're not sure if
      // they are logged into this app or not.
      document.getElementById('status').innerHTML = 'Please log ' +
        'into Facebook.';
    }
  }

  // This function is called when someone finishes with the Login
  // Button.  See the onlogin handler attached to it in the sample
  // code below.
  function checkLoginState() {
    FB.getLoginStatus(function(response) {
      statusChangeCallback(response);
    });
  }

  window.fbAsyncInit = function() {
  FB.init({
    appId      : '{your-app-id}',
    cookie     : true,  // enable cookies to allow the server to access 
                        // the session
    xfbml      : true,  // parse social plugins on this page
    version    : 'v2.2' // use version 2.2
  });

  // Now that we've initialized the JavaScript SDK, we call 
  // FB.getLoginStatus().  This function gets the state of the
  // person visiting this page and can return one of three states to
  // the callback you provide.  They can be:
  //
  // 1. Logged into your app ('connected')
  // 2. Logged into Facebook, but not your app ('not_authorized')
  // 3. Not logged into Facebook and can't tell if they are logged into
  //    your app or not.
  //
  // These three cases are handled in the callback function.

  FB.getLoginStatus(function(response) {
    statusChangeCallback(response);
  });

  };

  // Load the SDK asynchronously
  (function(d, s, id) {
    var js, fjs = d.getElementsByTagName(s)[0];
    if (d.getElementById(id)) return;
    js = d.createElement(s); js.id = id;
    js.src = "//connect.facebook.net/en_US/sdk.js";
    fjs.parentNode.insertBefore(js, fjs);
  }(document, 'script', 'facebook-jssdk'));

  // Here we run a very simple test of the Graph API after login is
  // successful.  See statusChangeCallback() for when this call is made.
  function testAPI() {
    console.log('Welcome!  Fetching your information.... ');
    FB.api('/me', function(response) {
      console.log('Successful login for: ' + response.name);
      document.getElementById('status').innerHTML =
        'Thanks for logging in, ' + response.name + '!';
    });
  }
</script>

<!--
  Below we include the Login Button social plugin. This button uses
  the JavaScript SDK to present a graphical Login button that triggers
  the FB.login() function when clicked.
-->

<fb:login-button scope="public_profile,email" onlogin="checkLoginState();">
</fb:login-button>

<div id="status">
</div>

</body>
</html>

Facebook登录JavaScript示例
//使用来自FB.getLoginStatus()的结果调用此函数。
函数statusChangeCallback(响应){
log('statusChangeCallback');
控制台日志(响应);
//响应对象返回的状态字段允许
//应用程序知道此人的当前登录状态。
//响应对象的完整文档可以在文档中找到
//对于FB.getLoginStatus()。
如果(response.status===“已连接”){
//登录你的应用程序和Facebook。
testAPI();
}else if(response.status===“未授权”){
//此人已登录Facebook,但未登录您的应用程序。
document.getElementById('status')。innerHTML='Please log'+
“进入此应用程序。”;
}否则{
//此人未登录Facebook,因此我们不确定是否
//他们是否登录到此应用程序。
document.getElementById('status')。innerHTML='Please log'+
“进入Facebook。”;
}
}
//当某人完成登录时调用此函数
//按钮。请参见示例中附加到它的onlogin处理程序
//代码如下。
函数checkLoginState(){
FB.getLoginStatus(函数(响应){
状态更改回调(响应);
});
}
window.fbAsyninit=函数(){
FB.init({
appId:“{your app id}”,
cookie:true,//启用cookie以允许服务器访问
//会议
xfbml:true,//解析此页面上的社交插件
版本:“v2.2”//使用版本2.2
});
//现在我们已经初始化了JavaScript SDK,我们调用
//getLoginStatus()。此函数用于获取
//访问此页面的人,可以将三种状态之一返回到
//您提供的回调。它们可以是:
//
//1.登录到您的应用程序(“已连接”)
//2.登录Facebook,但不登录你的应用程序(“未授权”)
//3.未登录Facebook,无法判断是否已登录
//你的应用与否。
//
//这三种情况在回调函数中处理。
FB.getLoginStatus(函数(响应){
状态更改回调(响应);
});
};
//异步加载SDK
(功能(d、s、id){
var js,fjs=d.getElementsByTagName[0];
if(d.getElementById(id))返回;
js=d.createElement;js.id=id;
js.src=“//connect.facebook.net/en_US/sdk.js”;
fjs.parentNode.insertBefore(js,fjs);
}(文档“脚本”、“facebook jssdk”);
//在这里,我们在登录完成后运行一个非常简单的Graph API测试
//成功。请参阅statusChangeCallback()了解何时进行此调用。
函数testAPI(){
log('欢迎!获取您的信息…);
FB.api('/me',函数(响应){
console.log('successfulllogin for:'+response.name);
document.getElementById('status').innerHTML=
'感谢您登录,'+response.name+'!';
});
}

您是否正在使用Facebook登录?(或社交网络登录API)是的,使用curl登录facebook为什么要通过curl登录?只需创建一个正确的登录并存储一个访问令牌。我只是在学习,如何使用curl登录facebook而不进入facebook页面。这是IMHO不允许的。实际上我在学习curl。我想做一件类似的事情。首先你必须理解,如何在facebook dev中配置你的应用程序。然后开始编写代码。我不会创建任何应用程序来配置ji…我只是通过这样做来练习,