Within WebView, I need to send authorization header token along with iframe src like this:
<WebView
source={{
html: '<iframe src="www.myserver.com/verifytoken.php"></iframe>',
headers: authHeader,
}}
/>
Please give me a clue how to achieve this?
Thank you.