You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For Android apps who wants to set AAD token( or other tokens) on the java layer, there is no API currently to achieve that.
The C++ API - LogManager->GetAuthTokensController()->SetTicketToken(TicketType_AAD, value) is the right approach to set the AAD Id. This will set the AAD value in HTTP header, and consumed by 1ds collector.
But this is not exposed to the java layer.
The Java API - semanticContext.setTicket(TicketType.AAD, value) exists but never sends the token via HTTP request
Need a solution for Android apps to set token directly from java layer
The text was updated successfully, but these errors were encountered:
For Android apps who wants to set AAD token( or other tokens) on the java layer, there is no API currently to achieve that.
The C++ API -
LogManager->GetAuthTokensController()->SetTicketToken(TicketType_AAD, value)
is the right approach to set the AAD Id. This will set the AAD value in HTTP header, and consumed by 1ds collector.But this is not exposed to the java layer.
The Java API - semanticContext.setTicket(TicketType.AAD, value) exists but never sends the token via HTTP request
Need a solution for Android apps to set token directly from java layer
The text was updated successfully, but these errors were encountered: