#NoCode App Builder. The Ultimate Visual App Development Platform (VADP). UI Builder, Real-Time Database, APIs & more
Go to siteBackendless provides a number of services that you can use to build applications, including:
Here are a few examples of applications you could build using Backendless:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
backendless: {
type: "app",
app: "backendless",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.backendless.$auth.subdomain}.backendless.app/api/users/${this.backendless.$auth.oauth_uid}`,
headers: {
Authorization: `Bearer ${this.backendless.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
"user-token": `${this.backendless.$auth.oauth_access_token}`,
},
})
},
})
Backendless uses OAuth authentication. When you connect your Backendless account, Pipedream will open a popup window where you can sign into Backendless and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Backendless API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://{{custom_fields.subdomain}}.backendless.app/api/users/login
content-type: application/json
login={{custom_fields.login}}
&
password={{custom_fields.password}}