Skip to content
Snippets Groups Projects

Implement ArkoseLabs sign-in challenge

Merged Paul Gascou-Vaillancourt requested to merge arkose-labs-challenge into master
All threads resolved!
Compare and
10 files
+ 332
7
Compare changes
  • Side-by-side
  • Inline
Files
10
+ 7
0
import axios from '../lib/utils/axios_utils';
import { buildApiUrl } from './api_utils';
const ENDPOINT = '/api/:version/captcha_check';
export const needsArkoseChallenge = (username) =>
axios.get(`${buildApiUrl(ENDPOINT)}/${encodeURIComponent(username)}`);
Loading