The Inoreader API taps into the functionality of the Inoreader content reader, allowing the automation of tasks like subscribing to new feeds, listing articles, or marking items as read. In Pipedream, this can be leveraged to create custom workflows that integrate with other apps, trigger actions based on new content, or manage content consumption in a more efficient way.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
inoreader: {
type: "app",
app: "inoreader",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.inoreader.com/reader/api/0/user-info`,
headers: {
Authorization: `Bearer ${this.inoreader.$auth.oauth_access_token}`,
},
})
},
})
Automated Content Distribution: Create a workflow that monitors specific Inoreader folders or tags for new articles and automatically shares them to social media platforms like Twitter or Facebook with predefined hashtags.
Email Digests from Starred Articles: Set up a Pipedream workflow that collects articles you've starred throughout the day in Inoreader, and sends a neatly formatted digest to your email every evening, ensuring you never miss an important read.
Sync Read Status with Task Managers: Develop a system where articles marked as read in Inoreader trigger updates in a task management app like Todoist, marking related tasks as complete, keeping your reading and productivity apps in sync.
Emit new event when a new article is added to a folder. See the Documentation
Emit new event when a new broadcasted article is added. See the Documentation
Emit new event when a new starred article is added. See the Documentation
Emit new event when a new subscription is added. See the Documentation
Inoreader uses OAuth authentication. When you connect your Inoreader account, Pipedream will open a popup window where you can sign into Inoreader and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Inoreader API.
Pipedream requests the following authorization scopes when you connect your account:
read
write
GET
https://www.inoreader.com/oauth2/auth
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://www.inoreader.com/oauth2/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://www.inoreader.com/oauth2/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}