This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Thread: Maintaining User Authentication Across SPA and Mobile Applications with Azure AD B2C | |
| Hello Oleg & Shai, | |
| Thank you for your patience. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """GraphQL Yoga-ready schema""" | |
| scalar Date | |
| """ | |
| An object with a globally unique ID. | |
| """ | |
| interface Node { | |
| id: ID! | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -X POST https://example.com/graphql \ | |
| -H "Content-Type: application/json" \ | |
| -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \ | |
| -d '{ | |
| "query": " | |
| query AllAboutMe { | |
| me { | |
| name | |
| lastName | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define _CRT_SECURE_NO_DEPRECATE | |
| extern "C" { | |
| #include <libavformat/avformat.h> | |
| #include <libavcodec/avcodec.h> | |
| #include <libavutil/hwcontext.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| city_models = [] | |
| city_box = df.loc[:, 'City'] | |
| for isx, a in np.ndenumerate(city_box): | |
| city_models.append({ | |
| "name": a, | |
| "rowId": isx[0] # tuple! | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // @flow | |
| import React, {useState, useEffect, useContext, useRef } from 'react'; | |
| import { useHistory } from 'react-router-dom'; | |
| import axios from 'axios'; | |
| import moment from 'moment'; | |
| import Img from 'react-image'; | |
| import uniqid from 'uniqid'; | |
| import { useSelector, useDispatch } from 'react-redux'; |