Get current authenticated User by bearer token.
rpc GetMe
GetMe
user_api.v1.GetMe
user_api.v1.GetMe
Get current authenticated User by bearer token.
requests GetMeRequest
GetMeRequest
user_api.v1.GetMeRequest
user_api.v1.GetMeRequest
resp, _ := userApiService.GetMe(ctx, &v1.GetMeRequest{})
fmt.Println(resp)
const getmerequest = new GetMeRequest();
service.getMe(getmerequest, (err, value:GetMeResponse|null) => {
const resp = JSON.stringify(err ? err : value);
console.log("received ", resp);
})
using System;
using Grpc.Core;
using UserApi.V1;
namespace main
{
class Program
{
static void Main(string[] args)
{
Channel channel = new Channel("user-mgmt.YOUR_SANDBOX_ID.knoxnetworks.io:443", ChannelCredentials.Insecure);
var client = new UserApiService.UserApiServiceClient(channel);
var headers = new Metadata();
var getMeRequest = new GetMeRequest{};
var reply = client.GetMe(getMeRequest, headers);
Console.WriteLine("Response: " + reply);
channel.ShutdownAsync().Wait();
}
}
}
package demo;
import io.grpc.Channel;
import io.grpc.ManagedChannel;
import io.grpc.ManagedChannelBuilder;
import user_api.v1.User.GetMeRequest;
import user_api.v1.User.GetMeResponse;
import user_api.v1.UserApiServiceGrpc;
public class App {
public static void main(String[] args) {
ManagedChannel channel = ManagedChannelBuilder
.forAddress("user-mgmt.YOUR_SANDBOX_ID.knoxnetworks.io", 443)
.usePlaintext()
.build();
UserApiServiceGrpc.UserApiServiceBlockingStub blockStub =
UserApiServiceGrpc.newBlockingStub(channel);
GetMeRequest req_GetMeRequest =
GetMeRequest.newBuilder()
.build();
GetMeResponse resp = blockStub.getMe(req_GetMeRequest);
System.out.println(resp);
channel.shutdown();
}
}
const getmerequest = new GetMeRequest();
service.getMe(getmerequest, (err, value) => {
const resp = JSON.stringify(err ? err : value);
console.log("received ", resp);
})
extern crate grpc-sdks;
use tonic::transport::Channel;
use grpc-sdks::user_api::v1::user_api_service_client::UserApiServiceClient;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let channel = Channel::from_static("user-mgmt.YOUR_SANDBOX_ID.knoxnetworks.io")
.connect()
.await?;
let mut client = UserApiServiceClient::new(channel);
let request = tonic::Request::new(
());
// sending request and waiting for response
let response = client.get_me(request).await?.into_inner();
println!("RESPONSE={:?}", response);
Ok(())
}
package app
import io.grpc.ManagedChannelBuilder
import user_api.v1.User.GetMeRequest
import user_api.v1.User.GetMeResponse
import user_api.v1.UserApiServiceGrpc
fun main() {
val channel = ManagedChannelBuilder
.forAddress("user-mgmt.YOUR_SANDBOX_ID.knoxnetworks.io", 443)
.usePlaintext()
.build()
var blockStub = UserApiServiceGrpc.newBlockingStub(channel)
val req_GetMeRequest = GetMeRequest.newBuilder()
.build()
val resp = blockStub.getMe(req_GetMeRequest)
println(resp)
channel.shutdown()
}
returns GetMeResponse
GetMeResponse
user_api.v1.GetMeResponse
user_api.v1.GetMeResponse
Field | Type | Description |
---|---|---|
user | User | User object of the subject. |
{
"user": {
"uuid": "UUID",
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"role": 0,
"avatar": "AVATAR_URL",
"phone": "+1 555 555 5555",
"dids": [
"did:method-name:zDIDMultibase58Encoded",
"did:method-name:zDIDMultibase58Encoded"
],
"external_ids": [
{
"key": "KEY1",
"value": "VALUE1"
},
{
"key": "KEY2",
"value": "VALUE2"
}
],
"metadata": {
"fields": []
},
"account": "15436675"
}
}