Components
Reddit is a social news aggregation, discussion, and content-sharing platform where users post and vote on content organized into communities called subreddits.
Categories: Social Media
Type: reddit/v1
Connections
Version: 1
OAuth2 Authorization Code
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
clientId | Client Id | STRING | true | |
clientSecret | Client Secret | STRING | true |
Actions
Create Comment
Name: createComment
Creates comment on a Reddit post or replies to a comment.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
thing_id | Parent ID | STRING | Post ID (t3_*) or comment ID (t1_*) to reply to. | true |
text | Comment Text | STRING | Comment text. | true |
Example JSON Structure
{
"label" : "Create Comment",
"name" : "createComment",
"parameters" : {
"thing_id" : "",
"text" : ""
},
"type" : "reddit/v1/createComment"
}
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
jquery | ARRAY Items[] | An array with response data. |
success | BOOLEAN Optionstrue, false | Boolean value that indicates the success or failure of the request. |
Output Example
{
"jquery" : [ ],
"success" : false
}
Create Post
Name: createPost
Creates a new reddit post.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
sr | Subreddit Name | STRING | Subreddit name. | true |
title | Title | STRING | Post title. | true |
kind | Kind | STRING Optionslink, self | Type of post. | true |
url | URL | STRING | Link URL. | true |
text | Text | STRING | Post text. | true |
Example JSON Structure
{
"label" : "Create Post",
"name" : "createPost",
"parameters" : {
"sr" : "",
"title" : "",
"kind" : "",
"url" : "",
"text" : ""
},
"type" : "reddit/v1/createPost"
}
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
jquery | ARRAY Items[] | An array with response data. |
success | BOOLEAN Optionstrue, false | Boolean value that indicates the success or failure of the request. |
Output Example
{
"jquery" : [ ],
"success" : false
}
Reckon
Reckon is an accounting software used for financial management and bookkeeping tasks.
Redis
Redis is an open-source, in-memory data structure store used as a database, cache, and message broker, known for its high performance and support for various data structures like strings, hashes, lists, sets, and more.