 |
|
 |
hi!
I can't find the key from url that you give.
Please give to me the key to email: ntin87@gmail.com
Thanks.
No problem be hard.
|
|
|
|
 |
|
 |
Did you find the key? Let me know if you find it or how to find it?
Thanks,
Tarun
|
|
|
|
 |
|
 |
isn't that we must signup first to get the API?
check it out on google code!
here : https://www.google.com/accounts/NewAccount?continue=http://api.google.com/createkey&followup=http://api.google.com/createkey
|
|
|
|
 |
|
 |
can anybody give me direct link to google sdk?
i can't find library files for google api...
thancks a lot in advance
varadashvili@gmail.com
|
|
|
|
 |
|
 |
Sure, it will help me much, thank u!
|
|
|
|
 |
|
 |
Hello sir,
I have seen the code and tried to run it..It asks for the license key.How should I provide the license key to it.
Please tell me..It's very urgent..
Thanking you,
Yours sincerely,
Bhavana B.A.
India.
|
|
|
|
 |
|
 |
I'm afraid that you cannot use the Google Webservice anymore because Google just closed that service long time ago. Instead you can use AJAX Search API. Following link will be help you.
http://code.google.com/apis/soapsearch/api_faq.html#tech6
Wish you luck with Google API.
Wooseok.
---------------
Microsoft .NET MVP(KOREA)
|
|
|
|
 |
|
 |
You can still use the SOAP service, if you have a valid license key from Google. The SOAP service is not accepting NEW users.
If I understand correctly, you asked where do you put your license key, meaning you have a license.
You need to enter it in the doGoogleSearch function as seen below
r = s.doGoogleSearch(
"YOUR LICENSE HERE",
textSearch.Text,
0,
10,
false, "", false, "", "", "");
|
|
|
|
 |
|
 |
Where i can find License key requires as an arguments.
Please reply me.
|
|
|
|
 |
|
 |
Hi Umass,
You can't get a license number anymore. They've closed the SOAP service long time ago.
U can ude the AJAX API as someone suggested, though I never used it.
Regards,
nip90
|
|
|
|
 |
|
 |
i think this is good way to start.
i have liked the concept and i have used this ....
but when i run this program it says proxy authentication required
it also says unhandled exception of type 'System.web.webexception' occured in system.web.services.dll
can anyone help me with that...
thank you in advance...
|
|
|
|
 |
|
 |
Hi.. I have visual studio 2003 and I am trying to use Google Search Web Service(C#).But I got the error: DataBinder.Eval: 'EProjects.googleapi.ResultElement' does not contain a property with the name title. The source code of the Web Form that should display the Google Search Results: using googleapi; /// <summary> /// Summary description for GoogleResults. /// </summary> public class GoogleResults : System.Web.UI.UserControl { protected System.Web.UI.WebControls.ImageButton imgPrev; protected System.Web.UI.WebControls.ImageButton imgNext; protected System.Web.UI.WebControls.DataList lGoogle; public EProjects.googleapi.GoogleSearchResult gsR; public EProjects.googleapi.GoogleSearchService gcs; private void Page_Load(object sender, System.EventArgs e) { gcs=new googleapi.GoogleSearchService(); gsR=gcs.doGoogleSearch(licenceKeyString,Request.QueryString["Query"], 0, 1,true, "", true, "", "", ""); PopulatelGoogle(gsR); } #region Web Form Designer generated code override protected void OnInit(EventArgs e) { // // CODEGEN: This call is required by the ASP.NET Web Form Designer. // InitializeComponent(); base.OnInit(e); } /// <summary> ///Required method for Designer support - do not modify ///the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.Load += new System.EventHandler(this.Page_Load); } #endregion private void PopulatelGoogle(GoogleSearchResult gsR) { lGoogle.DataSource=gsR.resultElements; lGoogle.DataBind(); } } }
The HTML code of the same page: <table height="100%" width="100%"> <tr> <td colSpan="2"> <asp:datalist id="lGoogle" runat="server"> <ItemTemplate> <span style="font-size:17px;font-weight:bold;"> <%#DataBinder.Eval(Container.DataItem,"title")%> </span></br> <%#DataBinder.Eval(Container.DataItem,"snipper")%> </br> <a href='<%#DataBinder.Eval(Container.DataItem,"URL")%>'> <%#DataBinder.Eval(Container.DataItem,"URL")%> </a> </ItemTemplate> <SeparatorTemplate> </p> </SeparatorTemplate> </asp:datalist></td> </tr> <tr> <td align="left"><asp:imagebutton id="imgPrev" Runat="server"></asp:imagebutton></td> <td align="right"><asp:imagebutton id="imgNext" Runat="server"></asp:imagebutton></td> </tr> </table> I tried to solve this problem for a long time but I couldnt please help. "I am too late but i will never give up"
|
|
|
|
 |
|
 |
Hi
Good Day to You !!Can anyone please help me out in referencing the Google web service API , I did the following after downloading the API kit
1.Opened a web application project in .Net
2. clicked on Add Web Reference and then added http://api.google.com/GoogleSearch.wsdl . and named the web reference as Google Search and then addede this coding for just testing
public static string SpellingSuggestion(string Phrase)
{
// create an instance of the Google web service
Google.GoogleSearchService GoogleService = new
Google.GoogleSearchService();
// get the new spelling suggestion
string SpellingSuggestion = GoogleService.doSpellingSuggestion(Key,
Phrase);
// null means we have no spelling suggestion
if (SpellingSuggestion == null)
SpellingSuggestion = Phrase;
// release the web service object
GoogleService.Dispose();
return SpellingSuggestion;
}
but i'm getting errors as Google and GoogleService namespace is missing ,Can you please help me out .
Hope You guys wud help us
Thanking You ,
Ovia
|
|
|
|
 |
|
 |
Hi guys and gals. I have a Webservice question and it sounds like I am at the right place. I want to change the Web Reference URL dynamically. I want to put that URL in a Database field and go and pull it out. Can anyone help me?
|
|
|
|
 |
|
 |
dear Smile Seo
first of all,i want to thank you for your program myGoogle,
but i have a question concernning the referenced ddls axshdocvw and shdocvw
from where they are how they constructed ?
from the code u use them to create a webbrowser
thanks for you again.
my regards
Ayman
|
|
|
|
 |
|
 |
hi,
these dlls are the net explorer COM component which is availabe on ur .net IDE
Mahmoud Nasr
cloudnum_9@hotmail.com
|
|
|
|
 |
|
 |
Dude, you beat me to it .. I just downloaded the API and was writing the app. I'll post my version when done still so y'all can see. This will be my first venture into the .NET arena too
..:: Keno ::..
|
|
|
|
 |
|
 |
Do you know what could have caused this? Are there any proxy configurations needed if applicable ?
Soliant | email
"The whole of science is nothing more than a refinement of everyday thinking." -Albert E.
|
|
|
|
 |
|
 |
I was trying to do sth like this,thanks
Go ahead and make my day
KROMOZOM
|
|
|
|
 |
|
 |
When I downloaded API on Google Web APIs and checked its example sources, it reminded me of this example.
Even if this example is not great example, it's my pleasure to help you.
Good luck~!
|
|
|
|
 |
|
 |
Smile Seo wrote:
it's my pleasure to help you.
Smile Seo,
You have done a good job, man! Very good.
Thanks for giving everyone a nice starting place.
Nish
Check out last week's Code Project posting stats presentation from :-
http://www.busterboy.org/codeproject/
Feel free to make your comments.
|
|
|
|
 |
|
 |
unable to run it. Give some exception error....
is it due to key..???
Please help me.
|
|
|
|
 |
|
 |
I think you should input your valid key.
---------------
Microsoft .NET MVP
|
|
|
|
 |
|
 |
first of all I want to say : Great example
Does anyone know where I can get a vaild key?
|
|
|
|
 |