Note:
These API calls require API key. To request your API key send an email to api@qik.com.
Every API call accepts key as parameter apikey: JSON-RPC API and REST HTTP GET methods accept apikey as GET parameter, for example entry point to JSON-RPC API should look like: http://engine.qik.com/api/jsonrpc?apikey=xxxxxxx, where xxxxxx is your API key. REST HTTP POST methods accept API key as GET or POST parameter.
qik.user.followers
Get list of users that are following this user
Synopsis: qik.user.followers(id)
Input:
Param
|
Type
|
Description
|
id
|
int |
To input the user ID
|
Return:
Param
|
Type
|
Description
|
list(dict)
|
list(dict)
|
Returns the list of public profiles |
raises QNoSuchUserError
if no user was found
qik.user.following
Get list of users that this user is following.
Synopsis:qik.user.following(id)
Input:
Param
|
Type
|
Description
|
id
|
int |
To input the user ID
|
Return:
Param
|
Type
|
Description
|
list(dict)
|
list(dict)
|
Returns the list of public profiles |
raises QNoSuchUserError
if no user was found
qik.user.public_profile
Get user's public profile by username.
Synopsis: qik.user.public_profile(username)
Input:
Param
|
Type
|
Description
|
username
|
str |
To input the username, this is different from the log in.
|
Return:
Param
|
Type
|
Description
|
dict
|
dict |
Returns the profile data as dict |
raises QNoSuchUserError
if no user was found
qik.user.public_detailed_profile
Get user's public detailed profile by username.
Synopsis: qik.user.public_detailed_profile(username)
Input:
Param
|
Type
|
Description
|
username
|
str |
To input the username, this is different from the log in.
|
Return:
Param
|
Type
|
Description
|
dict
|
dict |
Returns the profile data as dict |
raises QNoSuchUserError
if no user was found
qik.user.public_detailed_profile_by_id
Get user's public detailed profile by id.
Synopsis: qik.user.public_detailed_profile_by_id(id)
Input:
|
Param
|
Type
|
Description
|
|
id
|
int
|
To input the user ID
|
Return:
|
Param
|
Type
|
Description
|
|
Dict
|
Dict
|
Profile Data as Dict
|
- raises QNoSuchUserError
- if no user was found
qik.user.public_profile_by_id
Get user's public profile by id.
Synopsis: qik.user.public_profile_by_id(id)
Input:
|
Param
|
Type
|
Description
|
|
id
|
int
|
To input the user ID
|
Return:
|
Param
|
Type
|
Description
|
|
Dict
|
Dict
|
Profile Data as Dict
|
- raises QNoSuchUserError
- if no user was found
Comments (0)
You don't have permission to comment on this page.