http://da.pekori.to/hatena/hatena_auth.py使い方は Hatena::API::Auth と同じにしたつもり。 #!/usr/bin/env python class Auth(object): LOGIN_URL = "http://auth.hatena.ne.jp/auth" API_URL = "http://auth.hatena.ne.jp/api/auth" def __init__(self, api_key, secret): self.api_key = api_key self.secret = secret def uri_to_login(self): params = {"api_key": self.api_key} params["api_sig"] = self.api_sig(params) return "%s?%