我正在使用Parse的第三方API,称为ParsePy。
https://github.com/dgrtwo/ParsePy
我可以登录,但是我无法检索当前用户的查询。 例如,我想检索当前用户或特定列的用户名,但似乎遇到了问题。
我真的不知道从哪里开始,坦率地说,由于稳定性问题,我对使用API持怀疑态度。
非常感谢任何帮助或指导
from parse_rest.connection import register
from parse_rest.datatypes import Object
from parse_rest.user import User
from parse_rest.connection import SessionToken
application_id = ""
rest_api_key = ""
# the application_id for the app. Obtain
# Register takes three arguments, two required and one being optional
# Master is an optional argument. Since this is a desktop-based application, the master key should NOT be included
register(application_id, rest_api_key, master_key=None)
u = User.login('123', '123')
不确定下一步该怎么做