Update README.md

This commit is contained in:
Easy 2022-02-08 11:47:37 +08:00 committed by GitHub
parent 22e0378d83
commit 8f76578aa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 6 deletions

View File

@ -45,28 +45,31 @@ PushDeer有Mac客户端亦支持推送。可在Mac应用商店中搜索「Pus
1. 通过apple账号或微信账号·仅Android版支持登录
1. 切换到「设备」标签页,点击右上角的加号,注册当前设备
1. 切换到「Key」标签页点击右上角的加号创建一个Key
1. 通过访问后边的URL即可推送内容https://api2.pushdeer.com/message/push?pushkey=key&text=要发送的内容
1. 通过访问后边的URL即可推送内容http://api2.pushdeer.com/message/push?pushkey=key&text=要发送的内容
> 注意注册设备用到了device token应用一旦重装device token会变所以需要重新注册一次。
### 发送实例
> 接口**都支持https**,但[比http要慢](https://weibo.com/1088413295/LeuYfDyfi),建议在推送敏感信息时使用。
发送文字:
```
https://api2.pushdeer.com/message/push?pushkey=key&text=要发送的内容
http://api2.pushdeer.com/message/push?pushkey=key&text=要发送的内容
```
发送图片:
```
https://api2.pushdeer.com/message/push?pushkey=<key>&text=<图片URL>&type=image
http://api2.pushdeer.com/message/push?pushkey=<key>&text=<图片URL>&type=image
```
发送Markdown
```
https://api2.pushdeer.com/message/push?pushkey=<key>&text=标题&desp=<markdown>&type=markdown
http://api2.pushdeer.com/message/push?pushkey=<key>&text=标题&desp=<markdown>&type=markdown
```
在URL中可以用`%0A`换行当参数中有特殊字符时需要进行urlencode因此更建议通过函数或者SDK发送。
@ -87,7 +90,7 @@ function pushdeer_send($text, $desp = '', $type='text', $key = '[PUSHKEY]')
'content' => $postdata));
$context = stream_context_create($opts);
return $result = file_get_contents('https://api2.pushdeer.com/message/push', false, $context);
return $result = file_get_contents('http://api2.pushdeer.com/message/push', false, $context);
}
```
@ -109,7 +112,7 @@ function pushdeer_send($text, $desp = '', $type='text', $key = '[PUSHKEY]')
```json
{
"url":"https://api2.pushdeer.com/message/push?pushkey={{pushkey}}",
"url":"http://api2.pushdeer.com/message/push?pushkey={{pushkey}}",
"values":[
{"type":"markdown"},
{"text":"{{title}} "},