欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
Google AdSense API
(→Links) |
|||
(未显示1个用户的1个中间版本) | |||
第2行: | 第2行: | ||
[[Image:google-adsense-netbeans-6.1.png|right|thumb|NetBeans 6.1]] | [[Image:google-adsense-netbeans-6.1.png|right|thumb|NetBeans 6.1]] | ||
Through the AdSense API, you can allow your users to create their own AdSense accounts on your site and display Google Ads alongside the content that they have created. Plus, users can manage their accounts and view ad performance and earnings reports - all on your site. Each user's AdSense account generates revenue for the user, and for you, the site owner. | Through the AdSense API, you can allow your users to create their own AdSense accounts on your site and display Google Ads alongside the content that they have created. Plus, users can manage their accounts and view ad performance and earnings reports - all on your site. Each user's AdSense account generates revenue for the user, and for you, the site owner. | ||
+ | ==WSDL== | ||
+ | *v3: | ||
+ | https://www.google.com/api/adsense/v3/AccountService?wsdl | ||
+ | https://www.google.com/api/adsense/v3/AdSenseForContentService?wsdl | ||
+ | https://www.google.com/api/adsense/v3/AdSenseForSearchService?wsdl | ||
+ | https://www.google.com/api/adsense/v3/ChannelService?wsdl | ||
+ | https://www.google.com/api/adsense/v3/ReferralService?wsdl | ||
+ | https://www.google.com/api/adsense/v3/ReportService?wsdl | ||
+ | https://www.google.com/api/adsense/v3/SiteFilterService?wsdl | ||
+ | *v2: | ||
+ | https://www.google.com/api/adsense/v2/AccountService?wsdl | ||
+ | https://www.google.com/api/adsense/v2/AdSenseForContentService?wsdl | ||
+ | https://www.google.com/api/adsense/v2/AdSenseForSearchService?wsdl | ||
+ | https://www.google.com/api/adsense/v2/ChannelService?wsdl | ||
+ | https://www.google.com/api/adsense/v2/ReferralService?wsdl | ||
+ | https://www.google.com/api/adsense/v2/ReportService?wsdl | ||
+ | https://www.google.com/api/adsense/v2/SiteFilterService?wsdl | ||
+ | |||
+ | API Reference: http://code.google.com/apis/adsense/developer/adsense_api_classref.html | ||
The AdSense API is a standard document/literal web service that we have tested with SOAP toolkits in: | The AdSense API is a standard document/literal web service that we have tested with SOAP toolkits in: | ||
第9行: | 第28行: | ||
* Perl: using [[SOAP::Lite]] | * Perl: using [[SOAP::Lite]] | ||
* C# | * C# | ||
+ | |||
+ | ==Sandbox== | ||
+ | The AdSense API sandbox is a replica of the live API services but with some additional support that helps developers test and debug their applications. | ||
+ | http://code.google.com/apis/adsense/developer/adsense_api_sandbox.html | ||
==Links== | ==Links== | ||
*http://code.google.com/apis/adsense/ | *http://code.google.com/apis/adsense/ | ||
+ | |||
+ | [[Category:Google]] |
2010年9月19日 (日) 15:58的最后版本
Google AdSense API is ideal for web site developers whose users create their own web content through applications like web hosting, web publishing, blogging, or social networking.
Through the AdSense API, you can allow your users to create their own AdSense accounts on your site and display Google Ads alongside the content that they have created. Plus, users can manage their accounts and view ad performance and earnings reports - all on your site. Each user's AdSense account generates revenue for the user, and for you, the site owner.
[编辑] WSDL
- v3:
https://www.google.com/api/adsense/v3/AccountService?wsdl https://www.google.com/api/adsense/v3/AdSenseForContentService?wsdl https://www.google.com/api/adsense/v3/AdSenseForSearchService?wsdl https://www.google.com/api/adsense/v3/ChannelService?wsdl https://www.google.com/api/adsense/v3/ReferralService?wsdl https://www.google.com/api/adsense/v3/ReportService?wsdl https://www.google.com/api/adsense/v3/SiteFilterService?wsdl
- v2:
https://www.google.com/api/adsense/v2/AccountService?wsdl https://www.google.com/api/adsense/v2/AdSenseForContentService?wsdl https://www.google.com/api/adsense/v2/AdSenseForSearchService?wsdl https://www.google.com/api/adsense/v2/ChannelService?wsdl https://www.google.com/api/adsense/v2/ReferralService?wsdl https://www.google.com/api/adsense/v2/ReportService?wsdl https://www.google.com/api/adsense/v2/SiteFilterService?wsdl
API Reference: http://code.google.com/apis/adsense/developer/adsense_api_classref.html
The AdSense API is a standard document/literal web service that we have tested with SOAP toolkits in:
- Java: using Apache Axis for building Java clients
- Python: using SOAPpy
- PHP: using NuSOAP
- Perl: using SOAP::Lite
- C#
[编辑] Sandbox
The AdSense API sandbox is a replica of the live API services but with some additional support that helps developers test and debug their applications.
http://code.google.com/apis/adsense/developer/adsense_api_sandbox.html