• 将公网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

  • 相关阅读:
    PHP模拟 URL Rewrite
    FCKeditor在smarty中的使用一例
    PHP网站开发遇到的中文编码
    浪子的心情叶启田
    URL Rewrite 写在.htaccess和httpd.conf中,对php的$_SERVER变量的影响
    PHP模拟实现url rewrite
    smarty的简单分页
    PHP与WEB服务工作的三种方式
    smarty内部日期函数html_select_date()
    php读取文件:PHP读取COOKIES的实现方法
  • 原文地址:https://www.cnblogs.com/IvanChen/p/5227788.html
Copyright © 2020-2023  润新知