instagram-private-api
Version:
Instagram private API wrapper for full access to instagram
15 lines (14 loc) • 337 B
TypeScript
export interface CheckpointResponse {
message: string;
challenge: CheckpointResponseChallenge;
status: string;
error_type: string;
}
export interface CheckpointResponseChallenge {
url: string;
api_path: string;
hide_webview_header: boolean;
lock: boolean;
logout: boolean;
native_flow: boolean;
}