Update README.md

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

View File

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