zoukankan      html  css  js  c++  java
  • 将公网IP自动发到Twitter上

    [Twitter]

    1. 在https://apps.twitter.com/创建新的应用

    2. 在https://dev.twitter.com/rest/reference/post/statuses/update页面下的OAuth Signature Generator点击刚才创建的应用。

    参考:
    http://blog.csdn.net/csfreebird/article/details/18238465
    https://dev.twitter.com/rest/reference/post/statuses/update

    [Python]

    1. 首先安装python-pip, 然后通过pip install tweepy, 此时运行脚本虽然成功但是会提示以下告警:

    root@ubuntu1404:/home/chen# python postip.py 
    /usr/local/lib/python2.7/dist-packages/requests/packages/urllib3/util/ssl_.py:315: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#snimissingwarning.
      SNIMissingWarning
    /usr/local/lib/python2.7/dist-packages/requests/packages/urllib3/util/ssl_.py:120: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
      InsecurePlatformWarning

    2. 安装这些组件可以消除告警信息: pip install pyopenssl ndg-httpsclient pyasn1

    #!/usr/bin/env python
    import
    tweepy import requests consumer_key = 'f....j' consumer_secret = 'W....8' access_token = '4....j' access_token_secret = 'Q....M' auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_token, access_token_secret) api = tweepy.API(auth) html = requests.get('http://ip.3322.net') api.update_status(status=html.text)

    参考:

    https://www.phodal.com/blog/python-pip-openssl-issue/

    http://blog.topspeedsnail.com/archives/3380

  • 相关阅读:
    分形之城
    【SDOI2011 第2轮 DAY1】消防 树上问题+二分+贪心
    【Usaco Nov08 Gold】玩具 三分+贪心
    分治 复习
    快读板子
    最小线段覆盖 C神奇项链
    比赛经验积累1
    字符串 专题
    界面小项目之W3C
    前端小基础
  • 原文地址:https://www.cnblogs.com/IvanChen/p/5227788.html
Copyright © 2011-2022 走看看