下面来介绍一下如何通过PHP来进行腾讯微博操作,也可以直接查看演示。
如何用PHP登陆微博账户
腾讯的登录需要两个步鄹,第一步是根据自己的QQ号获取验证码,验证地址是:
代码如下 | 复制代码 |
http://ptlogin2.qq.com/check?uin=@'.$qq.'&appid=46000101 |
其中$qq代表你的微博帐号,通过这个验证你可以得到如下的结果:
代码如下 | 复制代码 |
ptui_checkVC('0','!CCQ'); |
其中!CCQ就是对应的验证码。这是一个随机码,每次访问都会有变化的。第二步就是把用户名,密码和验证码等信息提交到下面的地址:
代码如下 | 复制代码 |
http://ptlogin2.qq.com/login?u=@'.$qq.'&p='.md5($password.$verifyCode).'&verifycode='.$verifyCode.'&aid=46000101&u1=http%3A%2F%2Ft.qq.com&h=1&from_ui=1&fp=loginerroralert |
其中u=@'.$qq.'指的是你的微博帐号
代码如下 | 复制代码 |
p='.md5($pwd.$verifyCode).' |
是经过加密的密码,这个参数比较复杂,首先要把用户的qq密码经过md5_3加密,然后和刚刚返回的验证码组合,再使用md5加密
代码如下 | 复制代码 |
&verifycode='.$verifyCode.' |
值得就是刚刚返回的验证码
代码如下 | 复制代码 |
&aid=46000101&u1=http%3A%2F%2Ft.qq.com&h=1&from_ui=1&fp=loginerroralert |
其他这些参数都是固定的不用修改,在请求这个地址以后如果正确会返回下面的信息:
代码如下 | 复制代码 |
ptuiCB('0','0','http://t.qq.com','0'); |
这个时候就算登录成功了,接下来就可以对微博进行操作了。
如何用PHP给微博发广播
发送广播很简单,只要想指定地址发送(POST)四个参数即可,提交的地址是:
代码如下 | 复制代码 |
http://t.qq.com/publish.php |
POST的数据有:
conten'=urlencode($content) ,指的是广播的内容,提交时需要用URL编码
pic=&countType=&viewModel=1 这些参数不用变,这里值得注意一点的是publish.php 页面需要验证提交地址,提交地址必须是来自于 http://t.qq.com/ 所以在发送POST请求的时候,需要提交一个REFERER。这样就可以发布成功了,返回的结果如下:
代码如下 | 复制代码 |
{result:0,msg:'广播成功',info:{'talk':[{"id":"XXXXXX","content":"u53c8u5f00u59cbu4e0bu96e8u4e86uff01","time":"u521au521a","type":1,"image":[],"from":"XXXXXX","name":"","nick":"","pic":"","flag":[],"count":0,"timestamp":1279167435}]}} |
如何用PHP收听其他用户的微博
收听微博的操作和发送广播的操作基本一样,也是往指定的地址发送(POST)数据,不过只需要有两个参数就可以了,提交的地址是:
http://t.qq.com/follow.php
POST的数据有:
'u'=>urlencode($follow) $follow指的是你想要收听的用户的微博号
'r'=>urlencode(time()) 这是一个随机码
提交以后,如果成功返回的结果如下:
{result:0,msg:'成功'}
到此为止,利用PHP对腾讯微博发布和收听的操作就都已经完成了
本文地址:
转载随意,但请附上文章地址:-)

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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
