25 lines
801 B
Bash
25 lines
801 B
Bash
|
|
#!/bin/bash
|
||
|
|
# 尝试多个可能的接口路径
|
||
|
|
|
||
|
|
# IT服务台Secret
|
||
|
|
curl -s 'https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=wwa8c87970b2011f41&corpsecret=EOtQslW7WD8Rna8Nm9WnwCW-ozHP3tustL4mFnet6O8' > /tmp/token.json
|
||
|
|
TOKEN=$(grep -o '"access_token":"[^"]*' /tmp/token.json | cut -d'"' -f4)
|
||
|
|
|
||
|
|
echo "Token: $TOKEN"
|
||
|
|
echo ""
|
||
|
|
|
||
|
|
# 尝试不同的接口路径
|
||
|
|
echo "=== 1. oa/get_template_list ==="
|
||
|
|
curl -s "https://qyapi.weixin.qq.com/cgi-bin/oa/get_template_list?access_token=$TOKEN"
|
||
|
|
echo ""
|
||
|
|
echo ""
|
||
|
|
|
||
|
|
echo "=== 2. oa/template/list ==="
|
||
|
|
curl -s "https://qyapi.weixin.qq.com/cgi-bin/oa/template/list?access_token=$TOKEN"
|
||
|
|
echo ""
|
||
|
|
echo ""
|
||
|
|
|
||
|
|
echo "=== 3. oa/approval/list ==="
|
||
|
|
curl -s "https://qyapi.weixin.qq.com/cgi-bin/oa/approval/list?access_token=$TOKEN&starttime=1767187200&endtime=1783094400"
|
||
|
|
echo ""
|