IWebmasterApi.GetDeepLinkAlgoUrls(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
no longer in use
Get algo urls with deep links
public:
System::Collections::Generic::List<Microsoft::Bing::Webmaster::Api::Interfaces::DeepLinkAlgoUrl ^> ^ GetDeepLinkAlgoUrls(System::String ^ siteUrl);
[System.Obsolete("no longer in use", true)]
[System.ServiceModel.FaultContract(typeof(Microsoft.Bing.Webmaster.Api.Interfaces.ApiFault))]
[System.ServiceModel.OperationContract]
[System.ServiceModel.Web.WebGet(BodyStyle=System.ServiceModel.Web.WebMessageBodyStyle.WrappedRequest)]
public System.Collections.Generic.List<Microsoft.Bing.Webmaster.Api.Interfaces.DeepLinkAlgoUrl> GetDeepLinkAlgoUrls (string siteUrl);
abstract member GetDeepLinkAlgoUrls : string -> System.Collections.Generic.List<Microsoft.Bing.Webmaster.Api.Interfaces.DeepLinkAlgoUrl>
Public Function GetDeepLinkAlgoUrls (siteUrl As String) As List(Of DeepLinkAlgoUrl)
Parameters
- siteUrl
- String
Returns
- Attributes
Examples
XML request sample
GET /webmaster/api.svc/pox/GetDeepLinkAlgoUrls?siteUrl=http://example.com&apikey=sampleapikeyedecc1ea4ae341cc8b6 HTTP/1.1
Content-Type: application/xml; charset=utf-8
Host: ssl.bing.com
XML response sample
HTTP/1.1 200 OK
Content-Length: 272
Content-Type: application/xml; charset=utf-8
<ArrayOfDeepLinkAlgoUrl xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Bing.Webmaster.Api" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<DeepLinkAlgoUrl>
<Impressions>124</Impressions>
<Url>http://example.com</Url>
</DeepLinkAlgoUrl>
</ArrayOfDeepLinkAlgoUrl>
JSON request sample
GET /webmaster/api.svc/json/GetDeepLinkAlgoUrls?siteUrl=http://example.com&apikey=sampleapikeyedecc1ea4ae341cc8b6 HTTP/1.1
Content-Type: application/json; charset=utf-8
Host: ssl.bing.com
JSON response sample
HTTP/1.1 200 OK
Content-Length: 113
Content-Type: application/json; charset=utf-8
{
"d":[
{
"__type":"DeepLinkAlgoUrl:#Microsoft.Bing.Webmaster.Api",
"Impressions":124,
"Url":"http://example.com"
}]
}