/// <summary> /// Get the json representing a <see cref="Messages"/> from GroupMe's servers; /// </summary> static public string JSONGet(WebClient webClient, string token, string groupID, params KeyValuePair <string, string>[] args) { return (UtilityNet.JSONGet ( webClient, URLGet(token, groupID).URLPost(args) )); }
static public string URLGet(string token, string groupID) => UtilityNet.URLGet(token, "groups", groupID, "messages");
static public string URLGet(string token, string groupID) => UtilityNet.URLGet(token, "groups", groupID.ToString());
static public string JSONGet(WebClient webClient, string token, string groupID) => UtilityNet.JSONGet(webClient, token, "groups", groupID.ToString());
/// <summary> /// Get <see cref="Groups"/>; /// </summary> static public Groups Get(WebClient webClient, string token) => JsonConvert.DeserializeObject <Groups>(UtilityNet.JSONGet(webClient, URLGet(token)));
static public string URLGet(string token) => UtilityNet.URLGet(token, "groups");