Hi am doing apple sign in with react js here. Was stucked with the form_post responseMode for a long time. Any assistance?
		fetch(`${redirectUri}`, {
			method: "POST",
			headers: {
				"Content-Type": "application/x-www-form-urlencoded"
			}
		})
			.then(res => res.json())
			.then(responseJson => {
				console.log(responseJson);
			});
on inspect, Network tab, no response was found.
Am i doing it correctly?