Skip to content

Instantly share code, notes, and snippets.

@MikeLarned
Created May 16, 2012 05:24
Show Gist options
  • Select an option

  • Save MikeLarned/2707699 to your computer and use it in GitHub Desktop.

Select an option

Save MikeLarned/2707699 to your computer and use it in GitHub Desktop.
UrbanAirship Get Tags
User-Agent: Fiddler
Authorization: Basic <key:mastersecret>
Host: go.urbanairship.com
GET https://go.urbanairship.com/api/tags/
public IEnumerable<string> GetTags()
{
return Http.Get<TagCollection>(GetApiUrl("tags/"), WithMasterSecret).Tags;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment