public static string BuildLikeRequest(LikeType _type, int _ownerId, uint _itemId, string _token, string _apiVersion)
        {
            if (string.IsNullOrWhiteSpace(_token))
            {
                throw new ArgumentException("Token can not be null or empty", nameof(_token));
            }

            var url = string.Format(m_addLikeTemplate, _type.ToString().ToLowerInvariant(), _ownerId, _itemId, _token, _apiVersion);

            return(url);
        }