求助!
使用users/:username<github上已注册>
运行返回“message”:"Not Found"
换了老师注册的"imoocdemo"也是如此。
求指点。
使用users/:username<github上已注册>
运行返回“message”:"Not Found"
换了老师注册的"imoocdemo"也是如此。
求指点。
2016-10-31
我也出现这个问题,解决方法是生成token,用token登录。
def request_method():
token = {"Authorization":"token place_your_token_here"}
response = requests.get('https://api.github.com/user', headers = token)
print better_print(response.text)
使用访问令牌而不是用用户名和密码的原因有两个:
通常放入了程序中的用户名和密码是很容易泄密的,别人看到了你的代码后知道了用户名和密码就能进行任意的操作。而如果有人使用了你的访问令牌,你可以随时注销掉该令牌
访问令牌是可以进行细粒度的权限配置,你可以设置该令牌只能查看你的github,从而保证了安全
举报