![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
fgasulay-azure-ad-graph-expo
Advanced tools
Small library designed for use with Expo, for getting user data from the Microsoft Graph API, using Azure AD for authentication, and following the Microsoft Azure AD auth flow. AzureADGraph is not a react component.
This is a simple JavaScript library designed to be used with Expo. This utilizes Expo's AuthSession to authenticate via Microsoft Azure AD. It follows Microsoft's Azure authentication flow to first login the user, then acquire a token, and then use that token to query the Microsoft Graph API /me endpoint to get user data.
This library now uses the Azure v2 endpoints! If you must use the v1 endpoints, please use version 1.1.2.
You can install this library via npm
or yarn
like so:
$ npm install azure-ad-graph-expo
$ yarn add azure-ad-graph-expo
import React from 'react';
import { StyleSheet, View, Text, Button } from 'react-native'
import * as AuthSession from 'expo-auth-session';
import { openAuthSession } from 'azure-ad-graph-expo';
export default class App extends React.Component {
state = {
result: null,
};
render() {
return (
<View style={styles.container}>
<Button title="Login" onPress={this._handlePressAsync} />
{this.state.result ? (
<Text>{JSON.stringify(this.state.result)}</Text>
) : <Text>Nothing to see here.</Text>}
</View>
);
}
_handlePressAsync = async () => {
let result = await openAuthSession(azureAdAppProps);
this.setState({ result });
}
}
const azureAdAppProps = {
clientId : AZURE_CLIENT_ID,
tenantId : AZURE_TENANT_ID,
scope : 'user.read',
redirectUrl : AuthSession.makeRedirectUri(),
returnUrl : null, // If left as 'null', redirectUrl will be used instead
clientSecret : AZURE_CLIENT_SECRET,
domainHint : AZURE_DOMAIN_HINT,
prompt : 'login'
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
FAQs
Small library designed for use with Expo, for getting user data from the Microsoft Graph API, using Azure AD for authentication, and following the Microsoft Azure AD auth flow. AzureADGraph is not a react component.
The npm package fgasulay-azure-ad-graph-expo receives a total of 4 weekly downloads. As such, fgasulay-azure-ad-graph-expo popularity was classified as not popular.
We found that fgasulay-azure-ad-graph-expo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.