import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nile_database: {
type: "app",
app: "nile_database",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://global.thenile.dev/developers/me/full`,
headers: {
Authorization: `Bearer ${this.nile_database.$auth.oauth_access_token}`,
},
})
},
})
Create a new database user by providing an email address and password. See the documentation
Nile Database uses OAuth authentication. When you connect your Nile Database account, Pipedream will open a popup window where you can sign into Nile Database and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Nile Database API.
Pipedream requests the following authorization scopes when you connect your account:
databasesworkspacesqueryGEThttps://console.thenile.dev/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}POSThttps://global.thenile.dev/oauth2/tokencontent-type: application/x-www-form-urlencodedaccept: application/jsonclient_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}POSThttps://global.thenile.dev/oauth2/tokencontent-type: application/x-www-form-urlencodedaccept: application/jsonclient_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&grant_type=refresh_token&refresh_token={{oauth.refresh_token}}