SoFunction
Updated on 2024-10-29

Detailed development of pinned group custom bots using python 3.7 configuration (2020 new version cheats)

The recent epidemic is more serious, many companies rely on Ali's office software nails to telecommuting, of course, nails this product is really hard for people to say, to be more difficult to use how difficult to use, really make people think that ali's pm are brainwashed to design this kind of brainwashed products, but troll to troll, the use of the use of the use of the nail, although nails of other features are very chicken ribs, but the robot this function is still letting people eye, belongs to a more geeky function, it can be third-party service information aggregation to nail group, to achieve automated synchronization of information, for example: through the aggregation of Github, Gitlab and other source code management services, to achieve the synchronization of source code updates; through the aggregation of Trello, JIRA and other project coordination services, to achieve the synchronization of project information; colleague, support for Webhook protocols Customized access to support more possibilities, such as: will be the operation and maintenance alarm reminders, automated test results report reminders, work, life schedule (work clock, off-duty dinner, fitness, reading, birthdays, anniversaries ...) And so on reminders are aggregated into Nail via custom bots.

However, some of the tips about pinned robots online are older, the code is based on many python2, in order to keep up with the times, we try to use python3.7 to develop and configure pinned custom robots.

First of all, to make it clear, nail custom robot has long been unsupported in the mobile end of the creation, so open your pc or mac side of the nail client, in need of robot chat group interface, click on the intelligent group assistant

Then click on the Add Robot button

At this point you can see a lot of third-party robots have been packaged, this time we choose to customize the robot

It is worth mentioning that the robot nailed based on the webhook protocol, webhook it is an api concept, is one of the use of microservices api paradigm, has also been made into a reverse api, that is, the front-end does not take the initiative to send a request, completely pushed by the back-end, there is an opportunity to single door will be written to elaborate on the webhook article!

In the Add Bot screen, fill in some information about the bot

It should be noted that in the security settings column, we choose to add a signature to verify the way, here to explain, nail robot security policy has three kinds, the first is the use of keywords, that is, you push the message must contain the keywords you define when you create the robot, if not contain the push can not be message, the second is the use of encrypted signatures, and the third is to define a few ip source, non-these sources of the The third is to define several ip sources, non-these sources of requests will be rejected, the overall point of view or the second is safe and flexible.

After successful creation, the system will assign you a webhook address, this address needs to be saved, the address has a unique accesstoken

OK, so how do you use this address to get your bot to push messages? Check out the official documentation:/doc#/serverapi2/qf2nxq

The documentation is still in python 2.0, so let's translate it to 3.0.

import time
import hmac
import hashlib
import base64
import 

timestamp = str(round(() * 1000))
secret = 'SEC90485937c351bfaed41fea8eda5f1e155bbf22842d5f9d6871999e05822fd894'
secret_enc = ('utf-8')
string_to_sign = '{}n{}'.format(timestamp, secret)
string_to_sign_enc = string_to_sign.encode('utf-8')
hmac_code = (secret_enc, string_to_sign_enc, digestmod=hashlib.sha256).digest()
sign = (base64.b64encode(hmac_code))
# print(timestamp)
# print(sign)


import requests,json # Import dependent libraries
headers={'Content-Type': 'application/json'} #Define data types
webhook = '/robot/send?access_token=f0ca7636f5812fe4815c97a72de9a7cc780c414c258b6c9a631036b1d0f49e3b&timestamp='+timestamp+"&sign="+sign
# Define the data to be sent
#"at": {"atMobiles": "['"+ mobile + "']"
data = {
 "msgtype": "text",
 "text": {"content": 'Who all hasn't joined the group? Be careful not to get promoted.'},
 "isAtAll": True}
res = (webhook, data=(data), headers=headers) # Send a post request

print()

The push effect looks like the one below:

Originally reprinted from "Liu Yue's Technology Blog"./a_id_132

To this point this article on the detailed use of python3.7 configuration development nail group custom robot (2020 new version of the strategy) of the article is introduced to this, more related python3.7 nail group custom robot content please search for my previous posts or continue to browse the following related articles I hope that you will support me more in the future!