Skip to content

Instantly share code, notes, and snippets.

@jackiect
Last active March 26, 2020 09:28
Show Gist options
  • Save jackiect/df6fbba11e90bd170551e3b9f1966e86 to your computer and use it in GitHub Desktop.
Save jackiect/df6fbba11e90bd170551e3b9f1966e86 to your computer and use it in GitHub Desktop.
rongyun

https://docs.rongcloud.cn/im/server/signature/#_2

curl -X POST -H "App-Key: uwd1c0sxdlx2" -H "Nonce: 14314" -H "Timestamp: 1408710653000" -H "Signature: `echo -n Y1W2MeFwwwRxa0143141408710653000|sha1sum |awk '{printf $1}'`" -d 'userId=jlk456j5&name=Ironman&portraitUri=http%3A%2F%2Fabc.com%2Fmyportrait.jpg' "https://api-cn.ronghub.com/user/getToken.json"
curl -X POST -H "App-Key: 0vnjpoad0i1uz" -H "Nonce: $(date '+%s'|tail -c 6)" -H "Timestamp: $(date '+%s')" -H "Signature: `echo -n FZ****Pwbs$(date '+%s'|tail -c 6)$(date '+%s')|sha1sum |awk '{printf $1}'`" -d 'userId=jlk456j5&name=Ironman&portraitUri=http%3A%2F%2Fabc.com%2Fmyportrait.jpg' "https://api-cn.ronghub.com/user/getToken.json"

{"code":200,"userId":"jlk456j5","token":"Vk9O2dRLPlRYXDOv4zGBEXcjTUnCGVETk65A/2iMccLZF2uk0LUN6TJLNRHJ1NzsLVRliU5BLcgGWb3oTd3OXQ=="}

https://docs.rongcloud.cn/im/server/message/#message_private

curl -X POST -H "App-Key: 0vnjpoad0i1uz" -H "Nonce: $(date '+%s'|tail -c 6)" -H "Timestamp: $(date '+%s')" -H "Signature: `echo -n FZ****Pwbs$(date '+%s'|tail -c 6)$(date '+%s')|sha1sum |awk '{printf $1}'`" -d 'fromUserId=f2f&toUserId=jlk456j5&objectName=RC:TxtMsg&content={"content":"hello","extra":"helloExtra"}' "https://api-cn.ronghub.com/message/private/publish.json"

{"code":200}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment