Hello all,
I got following error message when I was trying to connect with
google's adword web service by using XML
- <HTML>
- <HEAD>
<TITLE>HTTP method POST is not supported by this URL</TITLE>
</HEAD>
- <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1>HTTP method POST is not supported by this URL</H1>
<H2>Error 405</H2>
</BODY>
</HTML>
I was sending the following message to google:
- <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns="https://adwords.google.com/api/adwords/v2">
- <soap:Header>
<email>myemail</email>
<password>mypassword</password>
<token>mytoken</token>
</soap:Header>
- <soap:Body>
- <estimateKeywordList>
- <keywordRequests>
<type>Broad</type>
<text>flowers</text>
<maxCpc>5000</maxCpc>
</keywordRequests>
</estimateKeywordList>
</soap:Body>
</soap:Envelope>
Anybody has similar experience? Thanks in advance.