Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/291.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/rest/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
使用Parse(Python)检索查询_Python_Rest_Parse Platform_Parsepy - Fatal编程技术网

使用Parse(Python)检索查询

使用Parse(Python)检索查询,python,rest,parse-platform,parsepy,Python,Rest,Parse Platform,Parsepy,我正在使用第三方API进行名为ParsePy的解析 我可以登录,但检索当前用户的查询时遇到问题。 例如,我想检索当前用户或特定列的用户名,但似乎遇到了问题 我真的不知道从哪里开始,坦率地说,由于稳定性问题,我对使用API持怀疑态度 任何帮助或指导都将不胜感激 from parse_rest.connection import register from parse_rest.datatypes import Object from parse_rest.user import User fro

我正在使用第三方API进行名为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')

不确定下一步要做什么

您需要实际向我们展示一些代码。在我最初的帖子“遇到问题”的底部添加一些代码没有帮助。你需要阅读“我真的不知道从哪里开始”和“任何帮助或指导将不胜感激”是这里的主要危险信号-请阅读好我在我的帖子中阐明了我自己,表明我已经走了多远,我需要改进