Python 을 이용 하여 매일 한 마디 씩 정 해진 시간 에 위 챗 으로 보 내 는 실현 방법

머리말
며칠 전 인터넷 에서'위 챗 으로 매일 여자 에 게 안녕 히 주 무 세 요'라 는 글 을 보고 신기 한 모습 을 느 꼈 다.그 다음 에 연 구 를 해 보 니 구상 이 정말 교묘 하 다.자,그럼 착공 합 시다!서버 가 생 겼 습 니 다.Python 환경 이 생 겼 습 니 다.IDE 가 열 렸 습 니 다.하지만...심각 한 문 제 를 깨 달 았 습 니 다.여자친 구가 없습니다(T*65343°T)...
위 챗 개발 이 활발 한 지 오래 되 었 습 니 다.위 챗 개발 에 있어 서 신기 한 인터페이스 가 있 습 니 다.템 플 릿 메시지 인터페이스 라 고 합 니 다.사용자 의 openid 에 따라 서버 에서 사용자 정의 템 플 릿 메 시 지 를 전송 할 수 있 습 니 다.그래서 저 희 는 이 특징 을 이용 하여 서버 에서 수시로 사용자 에 게 메 시 지 를 전송 할 수 있 습 니 다(전 제 는 이 사용자 가 이 공중 번 호 를 주목 했다 는 것 입 니 다).
3 시,1.템 플 릿 메시지 의 형식 은 사용자 정의 할 수 있 습 니 다.2.템 플 릿 메시지 의 내용 은 사용자 정의 할 수 있 습 니 다.3.템 플 릿 메시지 가 보 내 는 시간 은 사용자 정의 할 수 있 습 니 다.그러면 우 리 는 이러한 성질 을 이용 하여 자신 을 위해 아침 인 사 를 하 는 절 차 를 만 들 수 있다!
실험 환경
  • 아 리 클 라 우 드 리 눅 스 서버
  • Python 환경
  • 호출 주소:http://open.iciba.com/dsapi/요청 방식:GET
    요청 인자:
    매개 변수
    반드시 선택한다
    유형
    설명 하 다.
    date
    아니.
    string
    형식:2013-05-06;날짜 가 있 으 면,당일 을 기본 으로 합 니 다.
    type
    아니.
    string
    선택 가능 한 값 은 last 와 next 입 니 다.date 날 짜 를 기준 으로 last 는 전날,next 는 다음날 로 돌아 갑 니 다.
    복귀 유형:JSON
    JSON 필드 설명:
    속성 명
    속성 값 형식
    설명 하 다.
    sid
    string
    매일 한 마디 ID
    tts
    string
    오디 오 주소
    content
    string
    영문 내용
    note
    string
    중국어 내용
    love
    string
    매일 한 마디 좋아 하 는 개수
    translation
    string
    어패
    picture
    string
    그림 주소
    picture2
    string
    큰 그림 주소
    caption
    string
    표제
    dateline
    string
    시간.
    s_pv
    string
    조회 수
    sp_pv
    string
    음성 평가 조회 수
    tags
    array
    관련 태그
    fenxiang_img
    string
    사진 합성,웨 이 보 용 공유 권장
    정상 복귀 예제:
    
    {
     "sid": "3080",
     "tts": "http://news.iciba.com/admin/tts/2018-08-01-day.mp3",
     "content": "No matter how hard we try to be mature, we will always be a kid when we all get hurt and cry. ",
     "note": "         ,       ,        。",
     "love": "1966",
     "translation": "    :       《  ・ 》。      ,      。       ,      :    ,          。       ,                     。",
     "picture": "http://cdn.iciba.com/news/word/20180801.jpg",
     "picture2": "http://cdn.iciba.com/news/word/big_20180801b.jpg",
     "caption": "      ",
     "dateline": "2018-08-01",
     "s_pv": "0",
     "sp_pv": "0",
     "tags": [
     {
     "id": null,
     "name": null
     }
     ],
     "fenxiang_img": "http://cdn.iciba.com/web/news/longweibo/imag/2018-08-01.jpg"
    }
    요청 예시:
    Python 2 요청 예제
    
    #!/usr/bin/python2
    #coding=utf-8
    import json
    import urllib2
    def get_iciba_everyday():
     url = 'http://open.iciba.com/dsapi/'
     request = urllib2.Request(url)
     response = urllib2.urlopen(request)
     json_data = response.read()
     data = json.loads(json_data)
     return data
    print get_iciba_everybody()
    Python 3 요청 예제
    
    #!/usr/bin/python3
    #coding=utf-8
    import json
    import requests
    def get_iciba_everyday():
     url = 'http://open.iciba.com/dsapi/'
     r = requests.get(url)
     return json.loads(r.text)
    print(get_iciba_everyday())
    PHP 요청 예제
    
    <?php
    function https_request($url, $data = null){
     $curl = curl_init();
     curl_setopt($curl, CURLOPT_URL, $url);
     curl_setopt($curl, CURLOPT_HEADER, 0);
     curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
     curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0);
     if (!empty($data)) {
     curl_setopt($curl, CURLOPT_POST, 1);
     curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
     }
     curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
     $output = curl_exec($curl);
     curl_close($curl);
     return $output;
    }
    function get_iciba_everyday(){
     $url = 'http://open.iciba.com/dsapi/'
     $result = https_request($url);
     $data = json_decode($result);
     return $data;
    }
    echo get_iciba_everyday();
    이 인터페이스(매일 한 마디)공식 문서:http://open.iciba.com/?c=wiki
    참고 자료:금 산사 패·개발 플랫폼
    위 챗 공식 플랫폼 인터페이스 테스트 계 정 로그 인
    로그 인 공식 플랫폼 테스트 번 호 를 검색 합 니 다.
    시험 번호 신청 주소https://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbox/login

    휴대폰 로그 인 확인

    새로 추 가 된 테스트 템 플 릿 을 찾 아 템 플 릿 메 시 지 를 추가 합 니 다.

    템 플 릿 제목 을 매일 한 마디 씩 작성 하고 다음 템 플 릿 내용 을 작성 합 니 다.
    {{content.DATA}}
    {{note.DATA}}
    {{translation.DATA}}

    저장 을 제출 한 후 이 템 플 릿 ID 를 기억 하 십시오.나중에 사용 할 것 입 니 다.

    테스트 번호 정 보 를 찾 으 면 앱 id 와 앱 시 크 릿 을 기억 하고 이따가 사용 할 수 있 습 니 다

    테스트 번호 QR 코드 를 찾 았 습 니 다.핸드폰 으로 이 QR 코드 를 스 캔 하고 관심 을 가 진 후에 당신 의 닉네임 은 오른쪽 목록 에 나타 날 것 입 니 다.이 마이크로 신 호 를 기억 하 세 요.잠시 후에 사용 할 것 입 니 다.(주:이 마이크로 신 호 는 당신 의 진실 한 마이크로 신호 가 아 닙 니 다)

    위 챗 템 플 릿 메 시 지 를 보 내 는 프로그램
    이 프로그램 은 4 곳 만 수정 하면 됩 니 다.설명 을 보십시오.
    Python 2 구현
    
    #!/usr/bin/python2
    #coding=utf-8
    import json
    import urllib2
    
    class iciba:
     #    
     def __init__(self, wechat_config):
     self.appid = wechat_config['appid']
     self.appsecret = wechat_config['appsecret']
     self.template_id = wechat_config['template_id']
     self.access_token = ''
    
     #   access_token
     def get_access_token(self, appid, appsecret):
     url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=%s&secret=%s' % (appid, appsecret)
     request = urllib2.Request(url)
     response = urllib2.urlopen(request)
     json_data = response.read()
     data = json.loads(json_data)
     access_token = data['access_token']
     self.access_token = access_token
     return self.access_token
    
     #       
     def get_user_list(self):
     if self.access_token == '':
      self.get_access_token(self.appid, self.appsecret)
     access_token = self.access_token
     url = 'https://api.weixin.qq.com/cgi-bin/user/get?access_token=%s&next_openid=' % str(access_token)
     request = urllib2.Request(url)
     response = urllib2.urlopen(request)
     result = response.read()
     return json.loads(result)
    
     #     
     def send_msg(self, openid, template_id, iciba_everyday):
     msg = {
      'touser': openid,
      'template_id': template_id,
      'url': iciba_everyday['fenxiang_img'],
      'data': {
      'content': {
       'value': iciba_everyday['content'],
       'color': '#0000CD'
       },
      'note': {
       'value': iciba_everyday['note'],
      },
      'translation': {
       'value': iciba_everyday['translation'],
      }
      }
     }
     json_data = json.dumps(msg)
     if self.access_token == '':
      self.get_access_token(self.appid, self.appsecret)
     access_token = self.access_token
     url = 'https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=%s' % str(access_token)
     request = urllib2.Request(url, data=json_data)
     response = urllib2.urlopen(request)
     result = response.read()
     return json.loads(result)
    
     #          
     def get_iciba_everyday(self):
     url = 'http://open.iciba.com/dsapi/'
     request = urllib2.Request(url)
     response = urllib2.urlopen(request)
     json_data = response.read()
     data = json.loads(json_data)
     return data
    
     #             
     def send_everyday_words(self, openids):
     everyday_words = self.get_iciba_everyday()
     for openid in openids:
      result = self.send_msg(openid, self.template_id, everyday_words)
      if result['errcode'] == 0:
      print ' [INFO] send to %s is success' % openid
      else:
      print ' [ERROR] send to %s is error' % openid
    
     #   
     def run(self, openids=[]):
     if openids == []:
      #   openids  ,       
      result = self.get_user_list()
      openids = result['data']['openid']
     #   openids       
     self.send_everyday_words(openids)
    
    
    if __name__ == '__main__':
     #     
     wechat_config = {
     'appid': 'xxxxx', #(No.1)      appid
     'appsecret': 'xxxxx', #(No.2)      appsecret
     'template_id': 'xxxxx' #(No.3)          ID
     }
     
     #     
     openids = [
     'xxxxx', #(No.4)         (            )
     #'xxxxx', #          
     #'xxxxx',
     ]
     
    
     #   
     icb = iciba(wechat_config)
     
     # run()      openids  ,      
     #                     
     icb.run()
    Python 3 구현
    
    #!/usr/bin/python3
    #coding=utf-8
    import json
    import requests
    
    class iciba:
     #    
     def __init__(self, wechat_config):
     self.appid = wechat_config['appid']
     self.appsecret = wechat_config['appsecret']
     self.template_id = wechat_config['template_id']
     self.access_token = ''
    
     #   access_token
     def get_access_token(self, appid, appsecret):
     url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=%s&secret=%s' % (str(appid), str(appsecret))
     r = requests.get(url)
     data = json.loads(r.text)
     access_token = data['access_token']
     self.access_token = access_token
     return self.access_token
    
     #       
     def get_user_list(self):
     if self.access_token == '':
      self.get_access_token(self.appid, self.appsecret)
     access_token = self.access_token
     url = 'https://api.weixin.qq.com/cgi-bin/user/get?access_token=%s&next_openid=' % str(access_token)
     r = requests.get(url)
     return json.loads(r.text)
    
     #     
     def send_msg(self, openid, template_id, iciba_everyday):
     msg = {
      'touser': openid,
      'template_id': template_id,
      'url': iciba_everyday['fenxiang_img'],
      'data': {
      'content': {
       'value': iciba_everyday['content'],
       'color': '#0000CD'
       },
      'note': {
       'value': iciba_everyday['note'],
      },
      'translation': {
       'value': iciba_everyday['translation'],
      }
      }
     }
     json_data = json.dumps(msg)
     if self.access_token == '':
      self.get_access_token(self.appid, self.appsecret)
     access_token = self.access_token
     url = 'https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=%s' % str(access_token)
     r = requests.post(url, json_data)
     return json.loads(r.text)
    
     #          
     def get_iciba_everyday(self):
     url = 'http://open.iciba.com/dsapi/'
     r = requests.get(url)
     return json.loads(r.text)
    
     #             
     def send_everyday_words(self, openids):
     everyday_words = self.get_iciba_everyday()
     for openid in openids:
      result = self.send_msg(openid, self.template_id, everyday_words)
      if result['errcode'] == 0:
      print (' [INFO] send to %s is success' % openid)
      else:
      print (' [ERROR] send to %s is error' % openid)
    
     #   
     def run(self, openids=[]):
     if openids == []:
      #   openids  ,       
      result = self.get_user_list()
      openids = result['data']['openid']
     #   openids       
     self.send_everyday_words(openids)
    
    
    if __name__ == '__main__':
     #     
     wechat_config = {
     'appid': 'xxxxx', #(No.1)      appid
     'appsecret': 'xxxxx', #(No.2)      appsecret
     'template_id': 'xxxxx' #(No.3)          ID
     }
     
     #     
     openids = [
     'xxxxx', #(No.4)         (            )
     #'xxxxx', #          
     #'xxxxx',
     ]
    
     
     #   
     icb = iciba(wechat_config)
    
     # run()      openids  ,      
     #                     
     icb.run()
    이 프로그램의 GitHub 주소:https://github.com/varlemon/wechat-iciba-everyday
    테스트 프로그램
    Linux 에서 프로그램 실행

    휴대 전화 에서 살 펴 보 니 이미 매일 한 마디 의 소식 을 들 었 다.

    배포 프로그램
    Linux 에 정시 작업 설정
    
    crontab -e
    다음 내용 추가
    
    0 6 * * * python /root/python/iciba/main-v1.0.py
    주:상기 내용 의 의 미 는 매일6:00에 이 Python 프로그램 을 실행 한 다 는 것 입 니 다.
    정시 퀘 스 트 설정 성공 여부 확인
    
    crontab -l
    이로써 절차 배치 가 완료 되 었 으 니 내일6:00에 확인 하여 받 아 주 십시오!
    효과 도 는 다음 과 같다

    총결산
    이상 은 이 글 의 전체 내용 입 니 다.본 논문 의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 참고 학습 가치 가 있 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 댓 글 을 남 겨 주 셔 서 저희 에 대한 지지 에 감 사 드 립 니 다.

    좋은 웹페이지 즐겨찾기