getPersonalCard abstract method

Future<VKWebAppGetPersonalCardResult> getPersonalCard(
  1. List<String> type
)

"Contact card" is the place where the user indicates contact information (phone number, address, e-mail), which he is ready to share with third-party services.

The data in the contact card is not linked to the profile data and lives independently of it. At the same time, in the interface of your application, the user will be able to choose which data from the card to provide or edit data directly in the process of requesting access rights.

VKWebAppGetPersonalCard calls the user's contact card with the fields that you requested. The official app displays a screen asking for the user's permission to transfer the selected data to the app.

Platforms: iOS, Android

type - array of strings. Possible values: phone - phone number. email - mailing address. address - user's address.

Implementation

Future<VKWebAppGetPersonalCardResult> getPersonalCard(List<String> type);