Lines Matching refs:uri
91 $uri = $this->getConf('bitly_oauth_api');
92 $uri .= "shorten?access_token=" . $this->getConf('bitly_oauth_access_token');
93 $uri .= "&format=json";
94 $uri .= "&domain=" . $domain;
95 $uri .= "&longUrl=" . $longUrl;
97 $output = json_decode($this->getCurl($uri));
122 $uri = $this->getConf('yourls_url');
123 $uri .= "/yourls-api.php?signature=" . $this->getConf('yourls_token');
124 $uri .= "&action=shorturl&format=simple";
125 $uri .= "&url=" . $longUrl;
128 $url = $http->get($uri);