HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center

Get Tags

Retrieve the tags attached to the upcoming report using this method. This method returns an array of strings.

let tags = Instabug.getTags()
NSString *tags = [Instabug getTags];
Instabug.getTags();
Instabug.getTags();
Instabug.getTags(function (tags) {
  // `tags` is the returned values
});
Instabug.getTags();
//iOS
NSArray tags = Instabug.GetTags();

//Android
IList<string> tags = Instabug.Tags;