0

我正在使用 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')

不知道下一步该怎么做

4

0 回答 0