Questions tagged [deviceid]

81 questions
0
votes
1 answer

Device ID on google tag manager

I have a question about the possibility of assigning an id to a device (pc, mobile or tablet). I would like to assign a unique device ID to a single device in order to track its path on my website. My site does not require registration and login so…
0
votes
1 answer

How to Use UniqueDeviceId in ionic/react

i want to get Uniquedeviceid from device and then use it . i fount the solution for angular by in ionic/react i didn't find any suitable solution. the sample is like this at first i installed this : $ ionic cordova plugin add…
0
votes
1 answer

Powershell. Why where {} directive can not find two matching DeviceID? One taken from Win32_VideoController, another from Regedit value

Here is code # | Get DeviceID and Name of GPUs presented in system $GPU_Inf = Get-CIMInstance -Query "SELECT Caption, PNPDeviceID from Win32_VideoController" # | Obtain info on GPUs DeviceID and MemorySize from Regedit $mem_devid_value =…
alive-one
  • 33
  • 5
0
votes
1 answer

Android device id doesn't match on Physical Device & Emulator

I found an application & they are using Device Identity as user login. After uninstall & install its showing same DeviceID. When I test this app on my android device. The device identity doesn't match with this String. String android_id =…
0
votes
1 answer

Get VID/ PID of printer using C# with unknown device id

I have a usb printer. I don't know how to take device id also. I want to take vid/ pid using c# code. Any help appreciated.
0
votes
0 answers

What is devideId, in this case of encrypted data?

This data is submitted upon making a payment to a shop. I know what everything is inside this request, BUT the deviceId. I wonder if any of you can help me understand what it is? I have thought maybe it is the IP used to make the purchase, encrypted…
Doctuh
  • 21
  • 5
0
votes
1 answer

How to get uuid of android with Java as some other Cordova app did?

I was inspecting a Cordova app which makes API Call to a free open REST API. In one of the POST Requests, it sends the Device Id in a JSON Object. The Device ID in the Cordova App is obtained using: this.device.uuid; I am planning to build the same…
0
votes
0 answers

How to get Device Unique Id in ReactJs

Is there any way to find out unique device id in react js? As I want to do that no user can request for otp from same device more than three times in a day.
0
votes
1 answer

Different Android Id in Android 10

I have used two application from playstore named "Device Id" and one self made apk to fetch android id using SECURE.ANDROIDID but every time I am getting different android id(device id) in Android 9 and 10. Though it is coming same for Android 5 and…
0
votes
0 answers

I am trying to extract the device ID which is unique for each and every device for react-native using expo,but showing error log

I have tried the npm package mom install @react-native-device-info to get the device ID. But showing the error log.enter image description here Using expo i tried the expo-device package where Expo.constants.deviceId , it is generating some id with…
0
votes
1 answer

How to use device.uuid of Cordova library on sapui5 application?

I am trying to use device.uuid of Cordova on my Sapui5 application but it's doesn't seems to be working. I am running my app on Sap fiori client app. Other fuctinalities of Cordova such as barcode scanner etc. works fine but when I tried to use…
0
votes
1 answer

Permanent device ID between Nearby Connections?

I am currently working on a P2P chat application where the user discovers nearby devices and connects to them. When the other devices accept the connection request, they are added to the user's contacts list. What I want to do is re-establish those…
0
votes
1 answer

Setting new instance with existing boot disk as previous ran out of memory

I'm hoping someone can help me on this. I have filled up a server and now i can't get in it. Support gave me the following instructions (except miss out number 4) but I'm come to a halt. I can't get the code to work. How do i find out my device ID…
0
votes
1 answer

Get keyboard device ID for key event on UWP window when using multiple keyboards

Currently I have a Win32 desktop program written in C++ that uses the Raw HID Input API (a message loop observing WM_INPUT messages) to read key events and also get a handle to the specific keyboard that produced the event. I need this information…
SWdV
  • 1,715
  • 1
  • 15
  • 36
0
votes
2 answers

Should I use ANDROID_ID as device identification considering no factory reset?

I am developing an Android app where a single user can use the app only in one device by using the same Gmail account(for sign-in) . If the user wants to sign in the app on a different device, he won't be able to do it using the same Gmail account.…