QQ登录获取固定值 ,在线等、、、
QQ Color QQ登录
ret : 0
msg :
nickname : Wi_H
gender : 女
figureurl : http://qzapp.qlogo.cn/qzapp/100330589/***/30
is_yellow_vip : 0
vip : 0
yellow_vip_level : 0
level : 0
is_yellow_year_vip : 0
以上是登录返回的值,貌似都是不固定的。
QQ登录中返回的值哪些是固定的?用作帐号的ID。
话说 OpenID 是固定的,怎样调用?
回复讨论(解决方案)
账号的ID一般自动增长生成 哪怕是站外授权进来的ID
username一般用nickname 如果重复自动加个数字之类的 留待自己修改 或者直接要求所有人重新输入用户名
openid这些另外用个表存好或者直接存到用户表里
账号的ID一般自动增长生成 哪怕是站外授权进来的ID
username一般用nickname 如果重复自动加个数字之类的 留待自己修改 或者直接要求所有人重新输入用户名
openid这些另外用个表存好或者直接存到用户表里
不好意思,说错了!是【username】
如果使用【nickname】做帐号,当用户修改了自己的名称,那不就无法登录而需重新注册了吗?
官方说【openid】是固定的,但是我调用不到。
require_once("../login/qqConnectAPI.php");//获取API$qc = new QC();$userdata = $qc->get_user_info();//会员返回用户资料$userdata["gender"];$userdata["nickname"];
只能调用到以上的几个部分。
账号的ID一般自动增长生成 哪怕是站外授权进来的ID
username一般用nickname 如果重复自动加个数字之类的 留待自己修改 或者直接要求所有人重新输入用户名
openid这些另外用个表存好或者直接存到用户表里
不好意思,说错了!是【username】
如果使用【nickname】做帐号,当用户修改了自己的名称,那不就无法登录而需重新注册了吗?
官方说【openid】是固定的,但是我调用不到。
require_once("../login/qqConnectAPI.php");//获取API$qc = new QC();$userdata = $qc->get_user_info();//会员返回用户资料$userdata["gender"];$userdata["nickname"];
只能调用到以上的几个部分。
1.用QQ登录你网站的用户就算修改了QQ昵称,也不会影响登录你的网站,因为登录不是根据昵称判断的.
2.你先看一下授权流程 授权过程中是会给你openid的,接住存进数据库. 如果还是找不到这一步下午我帮你看看 我们网站也用QQ登录.
账号的ID一般自动增长生成 哪怕是站外授权进来的ID
username一般用nickname 如果重复自动加个数字之类的 留待自己修改 或者直接要求所有人重新输入用户名
openid这些另外用个表存好或者直接存到用户表里
不好意思,说错了!是【username】
如果使用【nickname】做帐号,当用户修改了自己的名称,那不就无法登录而需重新注册了吗?
官方说【openid】是固定的,但是我调用不到。
require_once("../login/qqConnectAPI.php");//获取API$qc = new QC();$userdata = $qc->get_user_info();//会员返回用户资料$userdata["gender"];$userdata["nickname"];
只能调用到以上的几个部分。
1.用QQ登录你网站的用户就算修改了QQ昵称,也不会影响登录你的网站,因为登录不是根据昵称判断的.
2.你先看一下授权流程 授权过程中是会给你openid的,接住存进数据库. 如果还是找不到这一步下午我帮你看看 我们网站也用QQ登录.
你好,我的扣扣:847149513
或者您留一下你的QQ行不
QQ号好害羞的不能轻易暴露啊
给你代码吧
跟api文档描述一样 先用appid appkey等获取access_token 再根据这个获取openid
关键是你要看明白api文档.... 这个别人没办法帮你理解啊
代码很简单容易明白的
function qq_callback(){ //debug //print_r($_REQUEST); //print_r($_SESSION); if($_REQUEST['state'] == $_SESSION['state']) //csrf { $token_url = "https://graph.qq.com/oauth2.0/token?grant_type=authorization_code&" . "client_id=" . $_SESSION["appid"]. "&redirect_uri=" . urlencode($_SESSION["callback"]) . "&client_secret=" . $_SESSION["appkey"]. "&code=" . $_REQUEST["code"]; $response = get_url_contents($token_url); if (strpos($response, "callback") !== false) { $lpos = strpos($response, "("); $rpos = strrpos($response, ")"); $response = substr($response, $lpos + 1, $rpos - $lpos -1); $msg = json_decode($response); if (isset($msg->error)) { echo "<h3 id="error">error:</h3>" . $msg->error; echo "<h3 id="msg-nbsp-nbsp">msg :</h3>" . $msg->error_description; exit; } } $params = array(); parse_str($response, $params); //debug //print_r($params); //set access token to session $_SESSION["access_token"] = $params["access_token"]; } else { echo("The state does not match. You may be a victim of CSRF."); }}function get_openid(){ $graph_url = "https://graph.qq.com/oauth2.0/me?access_token=" . $_SESSION['access_token']; $str = get_url_contents($graph_url); if (strpos($str, "callback") !== false) { $lpos = strpos($str, "("); $rpos = strrpos($str, ")"); $str = substr($str, $lpos + 1, $rpos - $lpos -1); } $user = json_decode($str); if (isset($user->error)) { echo "<h3 id="error">error:</h3>" . $user->error; echo "<h3 id="msg-nbsp-nbsp">msg :</h3>" . $user->error_description; exit; } //debug //echo("Hello " . $user->openid); //set openid to session $_SESSION["openid"] = $user->openid;}//QQ登录成功后的回调地址,主要保存access tokenqq_callback();//获取用户标示idget_openid();
QQ号好害羞的不能轻易暴露啊
给你代码吧
跟api文档描述一样 先用appid appkey等获取access_token 再根据这个获取openid
关键是你要看明白api文档.... 这个别人没办法帮你理解啊
代码很简单容易明白的
function qq_callback(){ //debug //print_r($_REQUEST); //print_r($_SESSION); if($_REQUEST['state'] == $_SESSION['state']) //csrf { $token_url = "https://graph.qq.com/oauth2.0/token?grant_type=authorization_code&" . "client_id=" . $_SESSION["appid"]. "&redirect_uri=" . urlencode($_SESSION["callback"]) . "&client_secret=" . $_SESSION["appkey"]. "&code=" . $_REQUEST["code"]; $response = get_url_contents($token_url); if (strpos($response, "callback") !== false) { $lpos = strpos($response, "("); $rpos = strrpos($response, ")"); $response = substr($response, $lpos + 1, $rpos - $lpos -1); $msg = json_decode($response); if (isset($msg->error)) { echo "<h3 id="error">error:</h3>" . $msg->error; echo "<h3 id="msg-nbsp-nbsp">msg :</h3>" . $msg->error_description; exit; } } $params = array(); parse_str($response, $params); //debug //print_r($params); //set access token to session $_SESSION["access_token"] = $params["access_token"]; } else { echo("The state does not match. You may be a victim of CSRF."); }}function get_openid(){ $graph_url = "https://graph.qq.com/oauth2.0/me?access_token=" . $_SESSION['access_token']; $str = get_url_contents($graph_url); if (strpos($str, "callback") !== false) { $lpos = strpos($str, "("); $rpos = strrpos($str, ")"); $str = substr($str, $lpos + 1, $rpos - $lpos -1); } $user = json_decode($str); if (isset($user->error)) { echo "<h3 id="error">error:</h3>" . $user->error; echo "<h3 id="msg-nbsp-nbsp">msg :</h3>" . $user->error_description; exit; } //debug //echo("Hello " . $user->openid); //set openid to session $_SESSION["openid"] = $user->openid;}//QQ登录成功后的回调地址,主要保存access tokenqq_callback();//获取用户标示idget_openid();
我用的是官方的 SDK 、、、http://wiki.connect.qq.com/sdk%E4%B8%8B%E8%BD%BD
下载下来的SDK文件夹每个文件都看了吗?
connect2.0/API/class/Oauth.class.php里边就有这两个方法 qq_callback() get_openid() 53行 94行
说个笨方法 119行return openid之前,将其存进数据库 不就获取了openid了吗?
授权流程 API文档 sdk文件 好好看一遍 有具体不明白的再进一步交流 我觉得还是比较易懂的. 关键自己要弄清楚这个流程 这就是开发的过程.
下载下来的SDK文件夹每个文件都看了吗?
connect2.0/API/class/Oauth.class.php里边就有这两个方法 qq_callback() get_openid() 53行 94行
说个笨方法 119行return openid之前,将其存进数据库 不就获取了openid了吗?
授权流程 API文档 sdk文件 好好看一遍 有具体不明白的再进一步交流 我觉得还是比较易懂的. 关键自己要弄清楚这个流程 这就是开发的过程.
多谢,其实自己早就调出来了!只不过出了差错!以为调出来的是错误的 openid、
细节决定成败呀
调出来就好

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

RESTAPI design principles include resource definition, URI design, HTTP method usage, status code usage, version control, and HATEOAS. 1. Resources should be represented by nouns and maintained at a hierarchy. 2. HTTP methods should conform to their semantics, such as GET is used to obtain resources. 3. The status code should be used correctly, such as 404 means that the resource does not exist. 4. Version control can be implemented through URI or header. 5. HATEOAS boots client operations through links in response.

In PHP, exception handling is achieved through the try, catch, finally, and throw keywords. 1) The try block surrounds the code that may throw exceptions; 2) The catch block handles exceptions; 3) Finally block ensures that the code is always executed; 4) throw is used to manually throw exceptions. These mechanisms help improve the robustness and maintainability of your code.

The main function of anonymous classes in PHP is to create one-time objects. 1. Anonymous classes allow classes without names to be directly defined in the code, which is suitable for temporary requirements. 2. They can inherit classes or implement interfaces to increase flexibility. 3. Pay attention to performance and code readability when using it, and avoid repeatedly defining the same anonymous classes.

In PHP, the difference between include, require, include_once, require_once is: 1) include generates a warning and continues to execute, 2) require generates a fatal error and stops execution, 3) include_once and require_once prevent repeated inclusions. The choice of these functions depends on the importance of the file and whether it is necessary to prevent duplicate inclusion. Rational use can improve the readability and maintainability of the code.

There are four main error types in PHP: 1.Notice: the slightest, will not interrupt the program, such as accessing undefined variables; 2. Warning: serious than Notice, will not terminate the program, such as containing no files; 3. FatalError: the most serious, will terminate the program, such as calling no function; 4. ParseError: syntax error, will prevent the program from being executed, such as forgetting to add the end tag.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.
