0

Using MIT App Inventor 2:

Is it possible to get some info from the phone to know who is it like:

  • phone number or
  • email address or
  • IP address or
  • device id or
  • UUID or
  • something else that I can use to identify that phone on my db?

I want to use some native component. (nothing like Identi or oauth)

Avi K.
  • 1,734
  • 2
  • 18
  • 28
srecce
  • 97
  • 3
  • 15
  • @Tanis.7x The question is no duplicate. I'm not asking how to get that from java or android studio, I'm asking that on APP INVENTOR – srecce May 12 '16 at 15:25

1 Answers1

1

To get the IP address, you can use the web component and an API, see also https://www.google.com/search?q=get+ip+address+api
See also How to work with the web component and an API by Stephen

To get phone number or email address or IP address or device id or UUID, blocks to do that are not available directly, but you could write your own extension and create a block yourself...

More information about how to create an extension see here, however that will be more advanced and will require some Java skills...

Alternatively you can take a look at some of my already available extensions

The App Inventor Extensions are currently in testing. See the announcement for more information and read the App Inventor Extensions document about how to use an App Inventor Extension.

Taifun
  • 6,165
  • 17
  • 60
  • 188