CartoDBClient.oAuthCartoDB.oAuthCartoDBQuery C# (CSharp) Метод

oAuthCartoDBQuery() публичный Метод

Exchange the username and password for an access token.
public oAuthCartoDBQuery ( string query ) : string
query string
Результат string
        public string oAuthCartoDBQuery(string query)
        {
            this.xAuthUsername = "";
            this.xAuthPassword = "";

               string url = SCOPE + "?q=" + query;
               string jsonString = this.oAuthWebRequest(oAuthCartoDB.Method.GET, url, String.Empty);

               return jsonString;
        }

Usage Example

        static void Main(string[] args)
        {
            // Update property settings in Properties/Settings.settings at CartoDBClient Project
            // with access values gived by  CartoDB

            // mail: username to access CartoDB
            // pass: password to access CartoDB
            // consumerKey: consumer key in "Your api keys"
            // consumerSecret: consumer secret in "Your api keys"
            // domain: your subdomain in  cartodb.com: http://yoursubdomain.cartodb.com

            // Create the client using xAuth protocol.
            // Update property settings in Properties/Settings.settings at CartoDBClient Project

            oAuthCartoDB oAuth = new oAuthCartoDB();
            oAuth.xAuthAccessTokenGet();

            // Now we can perform queries straigh away.
            // The result return the raw json string
            string jsonString = oAuth.oAuthCartoDBQuery("select * from table");
        }