# Third Push
In order to better facilitate the service for your users, we also provide third-party-push to help you connect with your users.
TIP
In order to minimize conflicts, AIHelp does not integrate any third-party-push. We just serve as a message relay platform to help you remind users or other services in the form of push.
# API
# SetPushTokenAndPlatform()
Call this method AFTER Setting UID via updateUserInfo
to inform AIHelp of the player's push token and push platform.
AIHelpSupport.SetPushTokenAndPlatform("PUSH_TOKEN", PushPlatform.FIREBASE);
# Definition
# pushToken
- Type:
string
- Details: Required. Users' push token, get it from your push platform.
# pushPlatform
- Type:
PushPlatform
- Details: Required. AIHelp supports 5 different platforms, which are APNs, FireBase, JPush, GeTui and HuaWei.
# Code Example
The code example is as follows:
AIHelpSupport.UpdateUserInfo(new UserConfig.Builder().SetUserId("uid").build());
AIHelpSupport.SetPushTokenAndPlatform("PUSH_TOKEN", PushPlatform.FIREBASE);