Steps to use Google Authenticator App for 2 Factor Authentication for GoDaddy

steps-to-use-google-authenticator-app-for-2-factor-authentication-for-godaddy

AA free security programme called Google Authenticator helps guard your accounts against password theft. Two-factor authentication, which is available on popular sites including Gmail, Facebook, Twitter, GoDaddy and Instagram, is simple to set up and use. The app (iOS/Android) generates a random code that is used to verify your identity when you log into various […]

Read More

Iterate through each element of JSON string in Android and iOS

Introduction We will assume that we are going to take JSON string as input String and we will look into the process to access each element of JSON String in Android and iOS. Android String jsonString = "{\"animal\":\"Lion\", \"bird\":\"Sparrow\"}"; JSONObject jsonObject = new JSONObject(jsonString); Iterator < ? > keys = jsonObject.keys(); while (keys.hasNext()) { String […]

Read More