Search the web
Sign In
New User? Sign Up
yws-searchmarketing · Yahoo! Search Marketing Developers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1 - 30 of 1087   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#30 From: "michael_s_lee" <michael_s_lee@...>
Date: Fri Nov 4, 2005 3:35 pm
Subject: Blank report response
michael_s_lee
Online Now Online Now
Send Email Send Email
 
Hi all,

I'm trying to request a Search Term Summary report. I've run this
request successfully in the past, but today when I try to run the
report, I'm getting a successful response, but there's no data
present.  If I run the same report through the web interface for the
same date period, there is data present, so I know that there is
data available.  It's just not being returned for my request through
the API for some reason.

Here's the request XML:

<?xml version="1.0"?>
<DTCRequest username="XXXXXXXX" password="XXXXXXXX"
key="XXXXXXXXXXX" xmlns="urn:/ows/aws/1.2"
xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
xs:schemaLocation="urn:/ows/aws/1.2 https://x-
secure.overture.com/schema/dtc/1.2/dtc_request.xsd">
   <Actions accountId="XXXXXXXXX">
     <GetReport>
       <SearchTermSummary beginDate="2005-11-03" endDate="2005-11-03"
querySource="0"/>
     </GetReport>
   </Actions>
</DTCRequest>


...and here's the response I'm getting:

<?xml version="1.0" encoding="UTF-8"?>
<DTCResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:/ows/aws/1.2 https://x-
secure.overture.com/schema/dtc/1.2/dtc_response.xsd"
xmlns="urn:/ows/aws/1.2" success="true">
   <ActionsResponse accountId="XXXXXXXXX">
     <GetReportResponse success="true"  >
       <SearchTermSummaryResponse>
       </SearchTermSummaryResponse>
     </GetReportResponse>
   </ActionsResponse>
</DTCResponse>

Any ideas on what I might be doing wrong?

Thanks for the help!
Mike

#29 From: "Yahoo! Search Marketing Monkey" <plummerm@...>
Date: Mon Sep 12, 2005 7:27 pm
Subject: Re: SetListingBid
ysm_monkey
Online Now Online Now
Send Email Send Email
 
Hey Keith,

What errors are you getting?  If you can post the sample XML (don't
include your user/pass/key!!) being posted, plus the response XML,
that'd help a lot.

-Y!SM Monkey

rks10x wrote:
> I am trying very hard to set the bid for my listings and failing
> miserably. Can someone give me an example that works?

#28 From: "rks10x" <keith@...>
Date: Mon Sep 12, 2005 7:15 pm
Subject: SetListingBid
rks10x
Offline Offline
Send Email Send Email
 
I am trying very hard to set the bid for my listings and failing
miserably. Can someone give me an example that works?

#27 From: "Yahoo! Search Marketing Monkey" <plummerm@...>
Date: Tue Sep 6, 2005 5:21 pm
Subject: Re: GetReport -> Category Summary
ysm_monkey
Online Now Online Now
Send Email Send Email
 
Hi Keith,

Try zero-padding your date fields.  So instead of passing "2005-9-6",
use "2005-09-06".  Barring that, a valid "dateTime" field may also
require the time, so possibly "2005-09-06 00:00:00".

-Y!SM Monkey

rks10x wrote:
> I am having a problem with the Category Summary report. Here is my XML:
>
> <?xml version="1.0" encoding="UTF-8"?>
> <DTCRequest xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
> xs:schemaLocation="urn:/ows/aws/1.2
> https://x-secure.overture.com/schema/dtc/1.2/dtc_request.xsd"
> xmlns="urn:/ows/aws/1.2" username="XXXXXX" password="XXXXXXXX"
> key="XXXXXXXXXXXXXX" >
>   <Actions accountId="XXXXXXXXXXX" >
>     <GetReport>
>         <CategorySummary endDate="2005-9-6" beginDate="2005-9-1" />
>     </GetReport>
>   </Actions>
> </DTCRequest>
>
> Here is the response I am getting:
>
> <?xml version="1.0" encoding="UTF-8"?>
>     <DTCResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xsi:schemaLocation="urn:/ows/aws/1.2
> http://www.overture.com/schema/dtc/1.2/dtc_response.xsd"
> xmlns="urn:/ows/aws/1.2" success="false"
> reason="cvc-datatype-valid.1.2.1: &apos;2005-9-6&apos; is not a valid
> &apos;dateTime&apos; value."></DTCResponse>
>
> What am I doing wrong. I just can't seem to find it.
>
> Thanks,
>
> Keith

#26 From: "rks10x" <keith@...>
Date: Tue Sep 6, 2005 5:05 pm
Subject: GetReport -> Category Summary
rks10x
Offline Offline
Send Email Send Email
 
I am having a problem with the Category Summary report. Here is my XML:

<?xml version="1.0" encoding="UTF-8"?>
<DTCRequest xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
xs:schemaLocation="urn:/ows/aws/1.2
https://x-secure.overture.com/schema/dtc/1.2/dtc_request.xsd"
xmlns="urn:/ows/aws/1.2" username="XXXXXX" password="XXXXXXXX"
key="XXXXXXXXXXXXXX" >
   <Actions accountId="XXXXXXXXXXX" >
     <GetReport>
         <CategorySummary endDate="2005-9-6" beginDate="2005-9-1" />
     </GetReport>
   </Actions>
</DTCRequest>

Here is the response I am getting:

<?xml version="1.0" encoding="UTF-8"?>
     <DTCResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:/ows/aws/1.2
http://www.overture.com/schema/dtc/1.2/dtc_response.xsd"
xmlns="urn:/ows/aws/1.2" success="false"
reason="cvc-datatype-valid.1.2.1: &apos;2005-9-6&apos; is not a valid
&apos;dateTime&apos; value."></DTCResponse>

What am I doing wrong. I just can't seem to find it.

Thanks,

Keith

#25 From: "zachberke" <zach@...>
Date: Fri Jul 29, 2005 12:50 am
Subject: Re: Account Names via API
zachberke
Online Now Online Now
Send Email Send Email
 
Awesome, thanks for the quick reply senor!

Perhaps you could post it to the Files section of this group for
everyone's benefit?  (OK, there looks like there's two users and two
moderators right now... but later?)

I was able to grab the PHP code posted there earlier today.

If not, feel free to email me at yaws@....

Thanks,
Zach

--- In yws-searchmarketing@yahoogroups.com, "senor_ysm" <sunr@y...> wrote:
> Zach,
>
> We've modified the tech doc to include the appropriate commands so
> you don't have to alternate between the two.  What's the best email
> address to forward the file to?
>
> Senor YSM
>
> --- In yws-searchmarketing@yahoogroups.com, "zachberke" <zach@t...>
> wrote:
> > Monkey,
> >
> > Thanks for the advice.  I am building an application that needs to
> > download all accounts at the get-go, which is why I'd like to get
> the
> > names.
> >
> > Is the documentation conflict/lapses being investigated?  It'd be
> > great to have a single PDF to refer to, rather than shuffling!
> >
> > Thanks,
> > Zach
> >
> > --- In yws-searchmarketing@yahoogroups.com, "Yahoo! Search
> Marketing
> > Monkey" <plummerm@y...> wrote:
> > > Hey Zach,
> > >
> > > I'm not aware of any bulk method for this.  You'll have to
> do 'em 1
> > at a
> > > time.  Unless you have a ridiculous number of accounts, I doubt
> you'll
> > > run into rate limit issues.  If you do, please contact your
> support
> > team.
> > >
> > > Note also that I'd suggest NOT using this command when you don't
> have
> > > to.  Why slow down your application making an XML call for an
> account
> > > name?  Just fetch it once, and cache it.  People don't change
> account
> > > names very often.  Maybe refresh/expire your cache once a month
> or once
> > > a week.  This is just a good programming practice, IMHO.
> > >
> > > Good luck,
> > > -Y!SM Monkey
> > >
> > > zachberke wrote:
> > > > Also, (from doc dated Feb 2005 -- I haven't seen the April 2005
> > > > version that Keith is referring to):
> > > >
> > > > "Use GetAccountName to retrieve the text name for a particular
> > accountId"
> > > >
> > > > Is there a way to get a list of account names for a list of
> account
> > > > ids?  Or will I have to issue a GetAccountName op for each
> account
> > > > whose name I want?  If so, am I going to run into Rate
> Limitation
> > > > Exceeded issues?
> > > >
> > > > Thanks,
> > > > Zach
> > > >
> > > >
> > > >

#24 From: "rks10x" <keith@...>
Date: Thu Jul 28, 2005 10:43 pm
Subject: Re: Sending POST from PHP
rks10x
Offline Offline
Send Email Send Email
 
That is exactly what I was looking for. Thank you very much.

Keith

--- In yws-searchmarketing@yahoogroups.com, Matt Plummer
<plummerm@y...> wrote:
> Hey Keith,
>
> I uploaded some sample code to the group.  Just read the README and
give
> it a whirl.
>
> -Y!SM Monkey
>
> rks10x wrote:
> > Hello All,
> >
> > I am looking for the best way to send a POST to the
> > x-secure.overture.com server from PHP. Any ideas?
> >
> > Keith
> >
> >
> >
> >
> >
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> >

#23 From: Matt Plummer <plummerm@...>
Date: Thu Jul 28, 2005 10:24 pm
Subject: Re: Sending POST from PHP
ysm_monkey
Online Now Online Now
Send Email Send Email
 
Hey Keith,

I uploaded some sample code to the group.  Just read the README and give
it a whirl.

-Y!SM Monkey

rks10x wrote:
> Hello All,
>
> I am looking for the best way to send a POST to the
> x-secure.overture.com server from PHP. Any ideas?
>
> Keith
>
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>
>

#22 From: yws-searchmarketing@yahoogroups.com
Date: Thu Jul 28, 2005 10:21 pm
Subject: New file uploaded to yws-searchmarketing
yws-searchmarketing@yahoogroups.com
Send Email Send Email
 
Hello,

This email message is a notification to let you know that
a file has been uploaded to the Files area of the yws-searchmarketing
group.

   File        : /dtcxml_php.tgz
   Uploaded by : ysm_monkey <plummerm@...>
   Description : PHP Sample for connecting to DTCXML/AWS.

You can access this file at the URL:
http://groups.yahoo.com/group/yws-searchmarketing/files/dtcxml_php.tgz

To learn more about file sharing for your group, please visit:
http://help.yahoo.com/help/us/groups/files

Regards,

ysm_monkey <plummerm@...>

#21 From: "senor_ysm" <sunr@...>
Date: Thu Jul 28, 2005 9:36 pm
Subject: Re: Account Names via API
senor_ysm
Online Now Online Now
Send Email Send Email
 
Zach,

We've modified the tech doc to include the appropriate commands so
you don't have to alternate between the two.  What's the best email
address to forward the file to?

Senor YSM

--- In yws-searchmarketing@yahoogroups.com, "zachberke" <zach@t...>
wrote:
> Monkey,
>
> Thanks for the advice.  I am building an application that needs to
> download all accounts at the get-go, which is why I'd like to get
the
> names.
>
> Is the documentation conflict/lapses being investigated?  It'd be
> great to have a single PDF to refer to, rather than shuffling!
>
> Thanks,
> Zach
>
> --- In yws-searchmarketing@yahoogroups.com, "Yahoo! Search
Marketing
> Monkey" <plummerm@y...> wrote:
> > Hey Zach,
> >
> > I'm not aware of any bulk method for this.  You'll have to
do 'em 1
> at a
> > time.  Unless you have a ridiculous number of accounts, I doubt
you'll
> > run into rate limit issues.  If you do, please contact your
support
> team.
> >
> > Note also that I'd suggest NOT using this command when you don't
have
> > to.  Why slow down your application making an XML call for an
account
> > name?  Just fetch it once, and cache it.  People don't change
account
> > names very often.  Maybe refresh/expire your cache once a month
or once
> > a week.  This is just a good programming practice, IMHO.
> >
> > Good luck,
> > -Y!SM Monkey
> >
> > zachberke wrote:
> > > Also, (from doc dated Feb 2005 -- I haven't seen the April 2005
> > > version that Keith is referring to):
> > >
> > > "Use GetAccountName to retrieve the text name for a particular
> accountId"
> > >
> > > Is there a way to get a list of account names for a list of
account
> > > ids?  Or will I have to issue a GetAccountName op for each
account
> > > whose name I want?  If so, am I going to run into Rate
Limitation
> > > Exceeded issues?
> > >
> > > Thanks,
> > > Zach
> > >
> > >
> > >

#20 From: "rks10x" <keith@...>
Date: Thu Jul 28, 2005 8:57 pm
Subject: Sending POST from PHP
rks10x
Offline Offline
Send Email Send Email
 
Hello All,

I am looking for the best way to send a POST to the
x-secure.overture.com server from PHP. Any ideas?

Keith

#19 From: "senor_ysm" <sunr@...>
Date: Thu Jul 28, 2005 6:45 pm
Subject: Re: Account Names via API
senor_ysm
Online Now Online Now
Send Email Send Email
 
Zach,

We're working on consolidating the commands into a single doc.
We'll keep you posted.

Thanks,
Senor YSM

--- In yws-searchmarketing@yahoogroups.com, "zachberke" <zach@t...>
wrote:
> Monkey,
>
> Thanks for the advice.  I am building an application that needs to
> download all accounts at the get-go, which is why I'd like to get
the
> names.
>
> Is the documentation conflict/lapses being investigated?  It'd be
> great to have a single PDF to refer to, rather than shuffling!
>
> Thanks,
> Zach
>
> --- In yws-searchmarketing@yahoogroups.com, "Yahoo! Search
Marketing
> Monkey" <plummerm@y...> wrote:
> > Hey Zach,
> >
> > I'm not aware of any bulk method for this.  You'll have to
do 'em 1
> at a
> > time.  Unless you have a ridiculous number of accounts, I doubt
you'll
> > run into rate limit issues.  If you do, please contact your
support
> team.
> >
> > Note also that I'd suggest NOT using this command when you don't
have
> > to.  Why slow down your application making an XML call for an
account
> > name?  Just fetch it once, and cache it.  People don't change
account
> > names very often.  Maybe refresh/expire your cache once a month
or once
> > a week.  This is just a good programming practice, IMHO.
> >
> > Good luck,
> > -Y!SM Monkey
> >
> > zachberke wrote:
> > > Also, (from doc dated Feb 2005 -- I haven't seen the April 2005
> > > version that Keith is referring to):
> > >
> > > "Use GetAccountName to retrieve the text name for a particular
> accountId"
> > >
> > > Is there a way to get a list of account names for a list of
account
> > > ids?  Or will I have to issue a GetAccountName op for each
account
> > > whose name I want?  If so, am I going to run into Rate
Limitation
> > > Exceeded issues?
> > >
> > > Thanks,
> > > Zach
> > >
> > >
> > >

#18 From: "zachberke" <zach@...>
Date: Thu Jul 28, 2005 6:32 pm
Subject: Re: Account Names via API
zachberke
Online Now Online Now
Send Email Send Email
 
Monkey,

Thanks for the advice.  I am building an application that needs to
download all accounts at the get-go, which is why I'd like to get the
names.

Is the documentation conflict/lapses being investigated?  It'd be
great to have a single PDF to refer to, rather than shuffling!

Thanks,
Zach

--- In yws-searchmarketing@yahoogroups.com, "Yahoo! Search Marketing
Monkey" <plummerm@y...> wrote:
> Hey Zach,
>
> I'm not aware of any bulk method for this.  You'll have to do 'em 1
at a
> time.  Unless you have a ridiculous number of accounts, I doubt you'll
> run into rate limit issues.  If you do, please contact your support
team.
>
> Note also that I'd suggest NOT using this command when you don't have
> to.  Why slow down your application making an XML call for an account
> name?  Just fetch it once, and cache it.  People don't change account
> names very often.  Maybe refresh/expire your cache once a month or once
> a week.  This is just a good programming practice, IMHO.
>
> Good luck,
> -Y!SM Monkey
>
> zachberke wrote:
> > Also, (from doc dated Feb 2005 -- I haven't seen the April 2005
> > version that Keith is referring to):
> >
> > "Use GetAccountName to retrieve the text name for a particular
accountId"
> >
> > Is there a way to get a list of account names for a list of account
> > ids?  Or will I have to issue a GetAccountName op for each account
> > whose name I want?  If so, am I going to run into Rate Limitation
> > Exceeded issues?
> >
> > Thanks,
> > Zach
> >
> >
> >

#17 From: "Yahoo! Search Marketing Monkey" <plummerm@...>
Date: Thu Jul 28, 2005 5:00 pm
Subject: Re: Re: Account Names via API
ysm_monkey
Online Now Online Now
Send Email Send Email
 
Hey Zach,

I'm not aware of any bulk method for this.  You'll have to do 'em 1 at a
time.  Unless you have a ridiculous number of accounts, I doubt you'll
run into rate limit issues.  If you do, please contact your support team.

Note also that I'd suggest NOT using this command when you don't have
to.  Why slow down your application making an XML call for an account
name?  Just fetch it once, and cache it.  People don't change account
names very often.  Maybe refresh/expire your cache once a month or once
a week.  This is just a good programming practice, IMHO.

Good luck,
-Y!SM Monkey

zachberke wrote:
> Also, (from doc dated Feb 2005 -- I haven't seen the April 2005
> version that Keith is referring to):
>
> "Use GetAccountName to retrieve the text name for a particular accountId"
>
> Is there a way to get a list of account names for a list of account
> ids?  Or will I have to issue a GetAccountName op for each account
> whose name I want?  If so, am I going to run into Rate Limitation
> Exceeded issues?
>
> Thanks,
> Zach
>
>
>

#16 From: "zachberke" <zach@...>
Date: Thu Jul 28, 2005 4:50 pm
Subject: Re: Account Names via API
zachberke
Online Now Online Now
Send Email Send Email
 
Also, (from doc dated Feb 2005 -- I haven't seen the April 2005
version that Keith is referring to):

"Use GetAccountName to retrieve the text name for a particular accountId"

Is there a way to get a list of account names for a list of account
ids?  Or will I have to issue a GetAccountName op for each account
whose name I want?  If so, am I going to run into Rate Limitation
Exceeded issues?

Thanks,
Zach



--- In yws-searchmarketing@yahoogroups.com, "senor_ysm" <sunr@y...> wrote:
> --- In yws-searchmarketing@yahoogroups.com, "zachberke" <zach@t...>
> wrote:
> > Hi,
> >
> > Is there any way to get account name (from account id or some other
> > way) using the API?  I can get a list of all my accounts using
> > "GetAccountIds", but I want to know their names as well.
> >
> > Thanks,
> > Zach
>
> Zach,
>
> The GetAccountName command should do the trick.
>
> Thanks,
> Senor YSM

#15 From: "rks10x" <keith@...>
Date: Thu Jul 28, 2005 4:11 pm
Subject: Re: Listing Search Terms
rks10x
Offline Offline
Send Email Send Email
 
That is what I was afraid of.

Thanks,

Keith

--- In yws-searchmarketing@yahoogroups.com, "Yahoo! Search Marketing
Monkey" <plummerm@y...> wrote:
> Hey Keith,
>
> You can't do that.  The search term is the primary piece of a listing,
> and it cannot be modified.   You will have to add a new listing with
the
> new term you want, and possibly delete the old listing should you so
desire.
>
> Hope that helps,
> -Y!SM Monkey
>
> rks10x wrote:
> > Hi All,
> >
> > I am looking for a way to modify a listings searchterms/keywords after
> > a listing has all ready been setup. Any Ideas?
> >
> > Keith
> >
> >
> >
> >
> >
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >

#14 From: "Yahoo! Search Marketing Monkey" <plummerm@...>
Date: Thu Jul 28, 2005 4:01 pm
Subject: Re: Listing Search Terms
ysm_monkey
Online Now Online Now
Send Email Send Email
 
Hey Keith,

You can't do that.  The search term is the primary piece of a listing,
and it cannot be modified.   You will have to add a new listing with the
new term you want, and possibly delete the old listing should you so desire.

Hope that helps,
-Y!SM Monkey

rks10x wrote:
> Hi All,
>
> I am looking for a way to modify a listings searchterms/keywords after
> a listing has all ready been setup. Any Ideas?
>
> Keith
>
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>

#13 From: "rks10x" <keith@...>
Date: Thu Jul 28, 2005 3:48 pm
Subject: Listing Search Terms
rks10x
Offline Offline
Send Email Send Email
 
Hi All,

I am looking for a way to modify a listings searchterms/keywords after
a listing has all ready been setup. Any Ideas?

Keith

#12 From: "rks10x" <keith@...>
Date: Thu Jul 28, 2005 3:46 pm
Subject: Re: Account Names via API
rks10x
Offline Offline
Send Email Send Email
 
Hello,

I did not know there was new documentation. The stuff I have is dated
April 2005. How can I get this new version?

Keith

--- In yws-searchmarketing@yahoogroups.com, "zachberke" <zach@t...> wrote:
> Senor YSM,
>
> Thanks for the speedy reply.
>
> I've got the latest documentation (1.2.1 released July 2005) and it
> makes no mention of this operation.
>
> In fact, now that I'm looking, I see that a ton of operations listed
> in the old 1.2 (Feb 2005) doc are no longer described in the 1.2.1
> (July 2005) doc.  Do these documents need to be used side by side
> instead of replacing 1.2 w/ 1.2.1?
>
> Thanks,
> Zach
>
>
>
>
> --- In yws-searchmarketing@yahoogroups.com, "senor_ysm" <sunr@y...>
wrote:
> > --- In yws-searchmarketing@yahoogroups.com, "zachberke" <zach@t...>
> > wrote:
> > > Hi,
> > >
> > > Is there any way to get account name (from account id or some other
> > > way) using the API?  I can get a list of all my accounts using
> > > "GetAccountIds", but I want to know their names as well.
> > >
> > > Thanks,
> > > Zach
> >
> > Zach,
> >
> > The GetAccountName command should do the trick.

> >
> > Thanks,
> > Senor YSM

#11 From: "zachberke" <zach@...>
Date: Thu Jul 28, 2005 1:12 am
Subject: Re: A tricky POST
zachberke
Online Now Online Now
Send Email Send Email
 
If you were doing a GET and you had an "&" in the name of one of your
pairs, you'd have to encode that... or you'd have to define that as
illegal by spec.  I'm not sure.

Thanks for your help,
Zach


--- In yws-searchmarketing@yahoogroups.com, "Yahoo! Search Marketing
Monkey" <plummerm@y...> wrote:
> Would you normally encode the keys (name in name/value pair) too?  I
> can't recall, honestly.  The value of that "_D:blahblah.submit" key is
> an empty string, so there is no value there to encode.  Anyway, we'll
> see about making that quite a bit more obvious.
>
> Thanks!
> -Y!SM Monkey
>
> zachberke wrote:
> > Agreed.  For future reader's benefit:
> >
> > I was assuming that you'd URL encode that 2nd argument. Silly me.
> > Only the <val> part of xml=<val> should be URL encoded.  the '/'s and
> > other URL invalid characters in the
> > _D:/go2/xml/XMLRequestHandler.submit should NOT be URL encoded.
> >
> > If you ask me, this should be documented in big red letters somewhere.
> >  Maybe I really am the first person to assume that a POST request in
> > application/x-www-form-urlencoded format would URL encode all
> > name/value pairs, but I doubt it.
> >
> > Perhaps you could add a line to the doc section 2.3 for the
> > _D:/go2/xml/XMLRequestHandler.submit that says "Even if your content
> > type is w-xxx-form-urlencoded, this value should not be URL encoded."
> >
> > Thanks,
> > Zach
> >
> >
> > --- In yws-searchmarketing@yahoogroups.com, "ysm_monkey"
> > <plummerm@y...> wrote:
> >
> >>>I've tried sending custom headers to match the documentation syntax
> >>>exactly.  Still no luck.  Every time I send anything, it's as if the
> >>>server doesn't recognize that I've attempted a POST at all -- it
> >>>always replies with the https://x-secure.overture.com/ default HTML
> >>
> >>--
> >>
> >>>the single form and links to the schemas.
> >>>
> >>>Thanks,
> >>>Zach
> >>
> >>Hi Zach,
> >>
> >>I believe you've already worked this out with our team, but I'd like
> >>to follow up...
> >>
> >>The POST is quite normal.  The issues you are having are most likely
> >>do to the POST arguments (content) that you are sending in.  There are
> >>2 required variables.  "xml" and this goofy looking thing
> >>"_D:/go2/xml/XMLRequestHandler.submit".
> >>
> >>Obviously, the "xml" argument is the XML document you are sending.
> >>This does of course need to be url-encoded.  The other not-so-obvious
> >>argument is required, but the value is unimportant.
> >>
> >>So, your POST content ends up looking like:
> >>xml=[some encoded xml]&_D:/go2/xml/XMLRequestHandler.submit=
> >>
> >>That's it!  You should *not* have to muck with the headers in PHP
> >>(cURL) or Perl (LWP).
> >>
> >>-Y!SM Monkey
> >
> >
> >
> >
> >
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >

#10 From: "zachberke" <zach@...>
Date: Thu Jul 28, 2005 1:08 am
Subject: Re: Account Names via API
zachberke
Online Now Online Now
Send Email Send Email
 
Senor YSM,

Thanks for the speedy reply.

I've got the latest documentation (1.2.1 released July 2005) and it
makes no mention of this operation.

In fact, now that I'm looking, I see that a ton of operations listed
in the old 1.2 (Feb 2005) doc are no longer described in the 1.2.1
(July 2005) doc.  Do these documents need to be used side by side
instead of replacing 1.2 w/ 1.2.1?

Thanks,
Zach




--- In yws-searchmarketing@yahoogroups.com, "senor_ysm" <sunr@y...> wrote:
> --- In yws-searchmarketing@yahoogroups.com, "zachberke" <zach@t...>
> wrote:
> > Hi,
> >
> > Is there any way to get account name (from account id or some other
> > way) using the API?  I can get a list of all my accounts using
> > "GetAccountIds", but I want to know their names as well.
> >
> > Thanks,
> > Zach
>
> Zach,
>
> The GetAccountName command should do the trick.
>
> Thanks,
> Senor YSM

#9 From: "senor_ysm" <sunr@...>
Date: Wed Jul 27, 2005 9:47 pm
Subject: Re: Account Names via API
senor_ysm
Online Now Online Now
Send Email Send Email
 
--- In yws-searchmarketing@yahoogroups.com, "zachberke" <zach@t...>
wrote:
> Hi,
>
> Is there any way to get account name (from account id or some other
> way) using the API?  I can get a list of all my accounts using
> "GetAccountIds", but I want to know their names as well.
>
> Thanks,
> Zach

Zach,

The GetAccountName command should do the trick.

Thanks,
Senor YSM

#8 From: "zachberke" <zach@...>
Date: Wed Jul 27, 2005 9:34 pm
Subject: Account Names via API
zachberke
Online Now Online Now
Send Email Send Email
 
Hi,

Is there any way to get account name (from account id or some other
way) using the API?  I can get a list of all my accounts using
"GetAccountIds", but I want to know their names as well.

Thanks,
Zach

#7 From: "rks10x" <keith@...>
Date: Wed Jul 27, 2005 5:31 pm
Subject: Re: Command Question
rks10x
Offline Offline
Send Email Send Email
 
Nevermind on this one. The lastest documenation has been emailed to me.

Keith

--- In yws-searchmarketing@yahoogroups.com, "rks10x" <keith@1...> wrote:
> I have been looking all over but I can not find any reference material
> to the CreateAccount command. All I can find is that it exists. Does
> anyone have any more information on this?
>
> Keith

#6 From: "rks10x" <keith@...>
Date: Tue Jul 26, 2005 7:29 pm
Subject: Command Question
rks10x
Offline Offline
Send Email Send Email
 
I have been looking all over but I can not find any reference material
to the CreateAccount command. All I can find is that it exists. Does
anyone have any more information on this?

Keith

#5 From: "Yahoo! Search Marketing Monkey" <plummerm@...>
Date: Tue Jul 26, 2005 5:54 pm
Subject: Re: Re: A tricky POST
ysm_monkey
Online Now Online Now
Send Email Send Email
 
Would you normally encode the keys (name in name/value pair) too?  I
can't recall, honestly.  The value of that "_D:blahblah.submit" key is
an empty string, so there is no value there to encode.  Anyway, we'll
see about making that quite a bit more obvious.

Thanks!
-Y!SM Monkey

zachberke wrote:
> Agreed.  For future reader's benefit:
>
> I was assuming that you'd URL encode that 2nd argument. Silly me.
> Only the <val> part of xml=<val> should be URL encoded.  the '/'s and
> other URL invalid characters in the
> _D:/go2/xml/XMLRequestHandler.submit should NOT be URL encoded.
>
> If you ask me, this should be documented in big red letters somewhere.
>  Maybe I really am the first person to assume that a POST request in
> application/x-www-form-urlencoded format would URL encode all
> name/value pairs, but I doubt it.
>
> Perhaps you could add a line to the doc section 2.3 for the
> _D:/go2/xml/XMLRequestHandler.submit that says "Even if your content
> type is w-xxx-form-urlencoded, this value should not be URL encoded."
>
> Thanks,
> Zach
>
>
> --- In yws-searchmarketing@yahoogroups.com, "ysm_monkey"
> <plummerm@y...> wrote:
>
>>>I've tried sending custom headers to match the documentation syntax
>>>exactly.  Still no luck.  Every time I send anything, it's as if the
>>>server doesn't recognize that I've attempted a POST at all -- it
>>>always replies with the https://x-secure.overture.com/ default HTML
>>
>>--
>>
>>>the single form and links to the schemas.
>>>
>>>Thanks,
>>>Zach
>>
>>Hi Zach,
>>
>>I believe you've already worked this out with our team, but I'd like
>>to follow up...
>>
>>The POST is quite normal.  The issues you are having are most likely
>>do to the POST arguments (content) that you are sending in.  There are
>>2 required variables.  "xml" and this goofy looking thing
>>"_D:/go2/xml/XMLRequestHandler.submit".
>>
>>Obviously, the "xml" argument is the XML document you are sending.
>>This does of course need to be url-encoded.  The other not-so-obvious
>>argument is required, but the value is unimportant.
>>
>>So, your POST content ends up looking like:
>>xml=[some encoded xml]&_D:/go2/xml/XMLRequestHandler.submit=
>>
>>That's it!  You should *not* have to muck with the headers in PHP
>>(cURL) or Perl (LWP).
>>
>>-Y!SM Monkey
>
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>

#4 From: "zachberke" <zach@...>
Date: Tue Jul 26, 2005 4:05 pm
Subject: Re: A tricky POST
zachberke
Online Now Online Now
Send Email Send Email
 
Agreed.  For future reader's benefit:

I was assuming that you'd URL encode that 2nd argument. Silly me.
Only the <val> part of xml=<val> should be URL encoded.  the '/'s and
other URL invalid characters in the
_D:/go2/xml/XMLRequestHandler.submit should NOT be URL encoded.

If you ask me, this should be documented in big red letters somewhere.
  Maybe I really am the first person to assume that a POST request in
application/x-www-form-urlencoded format would URL encode all
name/value pairs, but I doubt it.

Perhaps you could add a line to the doc section 2.3 for the
_D:/go2/xml/XMLRequestHandler.submit that says "Even if your content
type is w-xxx-form-urlencoded, this value should not be URL encoded."

Thanks,
Zach


--- In yws-searchmarketing@yahoogroups.com, "ysm_monkey"
<plummerm@y...> wrote:
> > I've tried sending custom headers to match the documentation syntax
> > exactly.  Still no luck.  Every time I send anything, it's as if the
> > server doesn't recognize that I've attempted a POST at all -- it
> > always replies with the https://x-secure.overture.com/ default HTML
> --
> > the single form and links to the schemas.
> >
> > Thanks,
> > Zach
>
> Hi Zach,
>
> I believe you've already worked this out with our team, but I'd like
> to follow up...
>
> The POST is quite normal.  The issues you are having are most likely
> do to the POST arguments (content) that you are sending in.  There are
> 2 required variables.  "xml" and this goofy looking thing
> "_D:/go2/xml/XMLRequestHandler.submit".
>
> Obviously, the "xml" argument is the XML document you are sending.
> This does of course need to be url-encoded.  The other not-so-obvious
> argument is required, but the value is unimportant.
>
> So, your POST content ends up looking like:
> xml=[some encoded xml]&_D:/go2/xml/XMLRequestHandler.submit=
>
> That's it!  You should *not* have to muck with the headers in PHP
> (cURL) or Perl (LWP).
>
> -Y!SM Monkey

#3 From: "ysm_monkey" <plummerm@...>
Date: Fri Jul 8, 2005 10:39 pm
Subject: Re: A tricky POST
ysm_monkey
Online Now Online Now
Send Email Send Email
 
> I've tried sending custom headers to match the documentation syntax
> exactly.  Still no luck.  Every time I send anything, it's as if the
> server doesn't recognize that I've attempted a POST at all -- it
> always replies with the https://x-secure.overture.com/ default HTML
--
> the single form and links to the schemas.
>
> Thanks,
> Zach

Hi Zach,

I believe you've already worked this out with our team, but I'd like
to follow up...

The POST is quite normal.  The issues you are having are most likely
do to the POST arguments (content) that you are sending in.  There are
2 required variables.  "xml" and this goofy looking thing
"_D:/go2/xml/XMLRequestHandler.submit".

Obviously, the "xml" argument is the XML document you are sending.
This does of course need to be url-encoded.  The other not-so-obvious
argument is required, but the value is unimportant.

So, your POST content ends up looking like:
xml=[some encoded xml]&_D:/go2/xml/XMLRequestHandler.submit=

That's it!  You should *not* have to muck with the headers in PHP
(cURL) or Perl (LWP).

-Y!SM Monkey

#2 From: "zachberke" <zach@...>
Date: Tue Jun 28, 2005 1:07 am
Subject: A tricky POST
zachberke
Online Now Online Now
Send Email Send Email
 
Hi,

Thanks for setting up this group!

I'm having trouble getting started with the Search Marking API.

The POST request for this service is not normal. Must I specially
form the headers? I've tried following what documentation I can find,
but to no avail. Could anyone direct me to some good docs or example
code for this service? All the docs/example code I find seems to be
for the other exposed services.

I've tried using PHP and Perl to access the service.  With PHP I've
tried POSTing to the service with the fsockopen() function and using
the cURL library.  No luck either way.  With PERL I've tried using the
LWP library.  Can't get that to work either.  I've ensured that I can
make POST requests to other POST-form-enabled websites -- so I know
I'm doing typical POST requests correctly.  I think there's something
special about this POST that I'm just not getting.

I've tried sending custom headers to match the documentation syntax
exactly.  Still no luck.  Every time I send anything, it's as if the
server doesn't recognize that I've attempted a POST at all -- it
always replies with the https://x-secure.overture.com/ default HTML --
the single form and links to the schemas.

Thanks,
Zach

#1 From: "jeffreymcmanus" <jeffreymcmanus@...>
Date: Mon Jun 27, 2005 10:04 pm
Subject: Hello and Welcome
jeffreymcmanus
Offline Offline
Send Email Send Email
 
Hi everyone and welcome to yws-searchmarketing, the group for Yahoo!
Search Marketing Web Services.

This group supports software developers who want to create software to
integrate with Yahoo! Search Marketing Web Services. If you're a
(non-developer) customer of Yahoo! Search Marketing and you're looking
for help with the Search Marketing product, please go to
http://searchmarketing.yahoo.com/.

If this is your first exposure to creating software that incorporates
Yahoo!, you might also want to check out our Developer Network web
site, located at:

http://developer.yahoo.net/

The Developer Network site supports all of Yahoo! developer products,
which currently includes:

* Search
* Search Marketing
* Music
* Flickr (photo sharing)

We've got more developer products, tools, and APIs coming soon, so
check back frequently and feel free to give us feedback about what
you'd like to see.

Thanks for joining us. We're looking forward to seeing what you come
up with!

Jeffrey

________________________
Jeffrey McManus
Director
Yahoo! Developer Network
http://developer.yahoo.net/

Messages 1 - 30 of 1087   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help