Questions tagged [instanceid]

40 questions
1
vote
1 answer

UnitTest WorkflowInstanceID Exception

I am unit testing a StateMachineWorkflow and I create my test methods by clicking in my test project and I make Add - UnitTest. In the project window I select the workflow that I want to test and all the methods in it. Visual Studio generated a Test…
1
vote
1 answer

How to use "get-PnPdevice" to get InstanceID of a device

I want to get the instanceID of a device just as a string and assign it to a variable I only know the device name, so when I do: Get-PnpDevice -FriendlyName 'TSP100' It displays: Status Class FriendlyName InstanceId …
Cybergenik
  • 130
  • 1
  • 5
  • 11
1
vote
0 answers

iOS app can't connect to Firebase IID service - Location Bound?

I am working on an app and the Android version implements Firebase for Instance ID, Cloud Messaging and Analytics. Everything is working properly in regards to obtaining the instance id and FCM token. I also built a server API for sending…
1
vote
0 answers

FCM add Instance Id to topics after removing from batch remove

I am subscribing to events from FCM Android client and removing from server side code when something happens in the backend database. So based on this I have ome around a situation where if i subscribe to event event123 and than based on some…
kirtan403
  • 7,293
  • 6
  • 54
  • 97
1
vote
0 answers

Does Google Play Services handle offline device for registering GCM token?

I'm using the code below to register app token : public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = {"global"}; public static…
1
vote
2 answers

InstanceID, what if I do not succeed on sending the token to my server?

I created a Push Notification Server (PNS) by using Google Cloud Messaging (GCM). With this architecture, my server has to know the token associated to a user in order to send him push notifications. I extended the class InstanceIDListenerService…
Massimo
  • 3,436
  • 4
  • 40
  • 68
1
vote
1 answer

Instance ID not invalidated when clear application data

I have implemented GCM 3.0 with Instance ID API for sending push notification to application using Application and GCM server. Here is Instance ID API for GCM documentation which i am referring. When User direcltly uninstall application without…
Rajesh Jadav
  • 12,801
  • 5
  • 53
  • 78
1
vote
2 answers

GoogleCloudMessaging InstanceID.getInstance returns null

I've been looking around for the problem I'm facing but have yet to find anything pertaining to what I'm getting from trying to get the InstanceID from GoogleCloudMessaging. I've tried setting up the call in a class extending IntentService and also…
0
votes
0 answers

InstanceID to verify Signature

how InstanceID been used on Android to verify App Package name and the App Signature ? i couldn't find anything on Google developers documents for example App Like TikTok using this method to overcome Cloned APK or Patched APK and disable sign-in…
0
votes
1 answer

Oracle: BPEL->Java Callout->BPEL: how to make them belong to the same call tree in EM?

A BPEL process contains a Java callout to do a logic that would be impractical to do in BPEL. That Java callout in turn calls another BPEL workflow (with a DII WS call). BPEL1 -> (Java Embedding) -> Java code -> (SOAP call) -> BPEL2 All is working…
Vladimir Dyuzhev
  • 18,130
  • 10
  • 48
  • 62
0
votes
1 answer

Script to disable/enable PnP Device using InstanceID's - but the ID's change upon reboot

I have a working script to disable 4 usb joysticks using their respective InstanceID's $pnpIds = 'HID\VID_0079&PID_0006\7&1699A0E&198&0000', 'HID\VID_0079&PID_0006\7&5438EB5&19D&0000',…
drewjbx
  • 1
  • 2
0
votes
0 answers

Are there available (exists) Firebase instanceId for PWA?

I'm integrating firebase to my react app and need to generate a unique id for the app with purposes to identify user by this id in the future. After reading firebase docs found that there exist instanceId methods to generate a unique token for iOS…
0
votes
0 answers

Simple FirebaseApp is crashing after installation

I am learning to implement firebase in an android studio. And I have studied various tutorials on this subject. So in order to minimize the chances of making mistakes, I decided to implement a simple token generated scripts in my mainactivity inside…
0
votes
0 answers

Unity: Loading class instances from Json file gives ArgumentNullException

In my game, I have a Computer class with following variables: [System.Serializable] public class Computer : MonoBehaviour, ShopItem{ public string model; public int price; public int speed; public int watt; public Sprite…
Ivan Mok
  • 11
  • 2
0
votes
1 answer

How does a server handle Android Instance IDs?

I'd like to try using an InstanceID to authenticate my Android app with my database server (PHP/MySQL). I'm stuck, with some missing pieces of the puzzle. As I understand it, the process goes something like this: Get an API Key and a PROJECT_ID…
Robert Lewis
  • 1,847
  • 2
  • 18
  • 43