Easily integrate Instagram login for your NativeScript app (ready only for apps made with angular at the moment)
tns plugin add nativescript-instagram-auth
Note: the redirect uri need to be the same you set on the instagram developers website > manage clients > security
import {InstagramAuthModule} from "nativescript-instagram-auth/angular";
// ...
// Register this module to your angular app
InstagramAuthModule.forRoot({
clientId: 'YOUR_CLIENT_ID',
redirectUri: 'A_VALID_REDIRECT_URL'
})
private igLogin(): Promise<InstagramLoginResponse> {
const options: ModalDialogOptions = {
viewContainerRef: this.vcRef,
context: {},
fullscreen: true
};
return this.modalService.showModal(LoginComponent, options);
}
ngOnInit(): void {
this.igLogin().then(({error, token}) => {
if (error) {
// the user cancelled the login process or an error raised
} else {
console.log(`access token: ${token}`);
}
});
}
Full example available in demo-angular
folder
Apache License Version 2.0, January 2004