Get Wifi Info

📝

Note

You must call getConsent before accessing the following SDKs.

Integration NeededDetails
Mini App FrontendComing soon

Sample Request:

miniAppSdk.getWifiInfo()
  .then((result) => {
     if(result.success) {
         console.log('Wifi information:', result.data); 
     }
     else {
         console.log('Error fetching code:', result.error, result.error?.message);
     }
  })

Sample Response:

type WifiInfoResponse = {
  success: boolean,
  error?: string,
  data?: {
    wifi_bssid: string,
    wifi_ssid: string,
  }
}
  • Data will be null in case of success = false, and vice versa.
  • Error will be null in case of success = true, and vice versa.

This service only requires frontend implementation.