Friend Request (FriendReqInfo)
Data Structure
UINTLFriendReqType: Friend Request Type
UENUM(BlueprintType)
enum class UINTLFriendReqType :uint8 {
kReqText = 0 UMETA(DisplayName = "TEXT"),
kReqLink = 1 UMETA(DisplayName = "LINK"),
kReqImage = 2 UMETA(DisplayName = "IMAGE"),
kReqInvite = 3 UMETA(DisplayName = "INVITE"),
kReqVideo = 4 UMETA(DisplayName = "VIDEO")
};
FINTLFriendReqInfo: Friend Request Information
| Parameters | Type | Explanation | Notes |
|---|---|---|---|
| Type | int32 | Friend Request Type | Required for sharing content Optional for adding friends |
| User | FString | User ID or OpenID Enter the specified user's OpenID Sharing (Share) not supported | Mandatory |
| Title | FString | Title of shared content | Required |
| Description | FString | Description Briefly describe the purpose of sharing | Optional |
| Image Path | FString | Path of the image Local path (recommended) or URL of the online image | Optional |
| Thumb Path | FString | Path of the thumbnail Local path (recommended) or URL of the online thumbnail | Optional |
| Media Path | FString | Multimedia path (music or video) Local path of the multimedia file | Optional |
| Link | FString | Link Hyperlinks to images, music, or videos | Optional |
| ExtraJson | FString | Extended parameters | Optional |