React-Native (Android) : Request failed with status code 403 - bscscan api testnet

1.8k Views Asked by At

Please help me, I'm so stuck on this problem: I'm making an request BSCSCAN-API-TESTNET with Axios on React Native and the request is working correctly only within the iOS, but it is not working with the Android (403 Forbidden response).

My URL request: https://api-testnet.bscscan.com/api?module=account&action=txlist&address=0x400ee0c820144c8bb559ace1ad75e5c13e750334&sort=desc&apikey=P3A263376TPJHKQ5IXUD4VHUNFQKDJB4G5 I updated the apiKey so don't mind it.

My code: (IOS: oke, android: throw error 403)

try {
  const url =
    'https://api-testnet.bscscan.com/api?module=account&action=txlist&address=0x400ee0c820144c8bb559ace1ad75e5c13e750334&sort=desc&apikey=P3A263376TPJHKQ5IXUD4VHUNFQKDJB4G5';
  const response = await axios.get(url);
} catch (error) {
  throw error;
}
1

There are 1 best solutions below

2
On

Setting the user agent helped me solve the 403 issue.

try {
      const url =
        'https://api-testnet.bscscan.com/api?module=account&action=txlist&address=0x400ee0c820144c8bb559ace1ad75e5c13e750334&sort=desc&apikey=P3A263376TPJHKQ5IXUD4VHUNFQKDJB4G5';
      const response = await axios.get(url, {headers: { "User-Agent": "Mozilla/5.0" }});
    } catch (error) {
      throw error;
    }