Get Skyblur post. If the specified post is password-protected, you can retrieve the unlocked content by providing the password. Auth required for followers, following and mutual.
Input
application/jsonpassword
string
Optional
If the specified uri is password-protected, please provide the password. If no password is specified, the non-protected content will be returned.
uri
stringat-uri
Required
Skyblur post at-uri. It shoud be uk.skyblur.post collection.
Output
application/jsonadditional
string
Optional
No description available.
createdAt
stringdatetime
Optional
An RFC 3339 formatted timestamp.
encryptCid
string
Optional
No description available.
errorCode
string
Optional
Error code for restricted content. e.g. AuthRequired, NotFollower, NotFollowing, NotMutual
errorDescription
string
Optional
Description of the error code.
message
string
Optional
No description available.
text
string
Required
No description available.
visibility
string
Optional
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "Skyblur post at-uri. It shoud be uk.skyblur.post collection."
},
"password": {
"type": "string",
"description": "If the specified uri is password-protected, please provide the password. If no password is specified, the non-protected content will be returned."
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"text"
],
"properties": {
"text": {
"type": "string"
},
"message": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"errorCode": {
"type": "string",
"description": "Error code for restricted content. e.g. AuthRequired, NotFollower, NotFollowing, NotMutual"
},
"additional": {
"type": "string"
},
"encryptCid": {
"type": "string"
},
"visibility": {
"type": "string"
},
"errorDescription": {
"type": "string",
"description": "Description of the error code."
}
}
},
"encoding": "application/json"
},
"description": "Get Skyblur post. If the specified post is password-protected, you can retrieve the unlocked content by providing the password. Auth required for followers, following and mutual."
}