List Info

Thread: generic "buy it now" button




generic "buy it now" button
country flaguser name
United States
2007-08-20 16:53:23
I would be nice to have a "buy it now" button or
"pay here" button
where the user inputs the price.  My products are custom
made and the
price varies based on different variables.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integrationgooglegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribegooglegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: generic "buy it now" button
country flaguser name
United States
2007-08-21 06:43:16
Hi,

You could try the HTML API:
http://groups.google.com/
group/google-checkout-developers-forum/web/allowing-buyers-t
o-specify-their-own-price-product-name-description-or-quanti
ty

-Pablo

On Aug 20, 6:53 pm, kvedros <kved...gmail.com> wrote:
> I would be nice to have a "buy it
now"buttonor "pay here"button
> where the user inputs the price.  My products are
custom made and the
> price varies based on different variables.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integrationgooglegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribegooglegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: generic "buy it now" button
country flaguser name
United States
2007-08-21 13:20:15
I have the code you led us to at this link,
<form method="POST" action="https://s
andbox.google.com/checkout/cws/v2/
Merchant/123456789123456/checkoutForm"
accept-charset="utf-8">

<!-- Product Name -->
  <b>SJB Annual Giving</b>
  <input type="hidden"
name="item_name_1" value="SJB Annual
Giving"/>
  <br/>

  <!-- Product Description -->
  <i>Student Education Support</i>
  <input type="hidden"
name="item_description_1" value="Student
Education Support"/>
  <br/>

  <!-- Quantity -->
  <input type="hidden"
name="item_quantity_1" value="1"/>

  <!-- Unit Price -->
  Donation Amount: $
  <input type="text"
name="item_price_1"/>
  <br/>

  <!-- charset=UTF-8; Do not remove this line -->
  <input type="hidden"
name="_charset_"/>

  <!-- Display Google Checkout button -->
  <input type="image" name="Google
Checkout" alt="Fast checkout
through Google" src="http://sa
ndbox.google.com/checkout/buttons/
checkout.gif?
merchant_id=123456789123456&w=180&h=46&style=whi
te&variant=text&loc=en_US"
height="46" width="180"/>

</form>

but I get this error:
error
serial-number="068a5eb8-0a6c-4c86-822b-df4ea79fd8db&quo
t;>
<error-message>No seller found with id
123456789123456</error-message>
</error>

Any ideas?

On Aug 21, 4:43 am, "Pablo A. Osso"
<pabloo...gmail.com> wrote:
> Hi,
>
> You could try the HTML API:http://groups.google.com/group/google-ch
eckout-developers-forum/web/a...
>
> -Pablo
>
> On Aug 20, 6:53 pm, kvedros <kved...gmail.com> wrote:
>
> > I would be nice to have a "buy it
now"buttonor "pay here"button
> > where the user inputs the price.  My products are
custom made and the
> > price varies based on different variables.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integrationgooglegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribegooglegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: generic "buy it now" button
user name
2007-08-21 13:27:57
you have to put your merchant id in the URLs

<form method="POST" action="https://s
andbox.google.com/checkout/cws/v2/
Merchant/<YOUR-MERCHANT-ID>/checkoutForm"
accept-charset="utf-8">

 <input type="image" name="Google
Checkout" alt="Fast checkout
through Google" src="http://sa
ndbox.google.com/checkout/buttons/
checkout.gif?
merchant_id=<YOUR-MERCHANT-ID>&w=180&h=46&
style=white&variant=text&loc=en_US"
height="46" width="180"/>


On 8/21/07, Sconner <sconnersjbosco.org> wrote:
>
> I have the code you led us to at this link,
> <form method="POST" action="https://s
andbox.google.com/checkout/cws/v2/
> Merchant/123456789123456/checkoutForm"
accept-charset="utf-8">
>
> <!-- Product Name -->
>   <b>SJB Annual Giving</b>
>   <input type="hidden"
name="item_name_1" value="SJB Annual
Giving"/>
>   <br/>
>
>   <!-- Product Description -->
>   <i>Student Education Support</i>
>   <input type="hidden"
name="item_description_1" value="Student
> Education Support"/>
>   <br/>
>
>   <!-- Quantity -->
>   <input type="hidden"
name="item_quantity_1" value="1"/>
>
>   <!-- Unit Price -->
>   Donation Amount: $
>   <input type="text"
name="item_price_1"/>
>   <br/>
>
>   <!-- charset=UTF-8; Do not remove this line
-->
>   <input type="hidden"
name="_charset_"/>
>
>   <!-- Display Google Checkout button -->
>   <input type="image" name="Google
Checkout" alt="Fast checkout
> through Google" src="http://sa
ndbox.google.com/checkout/buttons/
> checkout.gif?
>
merchant_id=123456789123456&w=180&h=46&style=whi
te&variant=text&loc=en_US"
> height="46" width="180"/>
>
> </form>
>
> but I get this error:
> error
serial-number="068a5eb8-0a6c-4c86-822b-df4ea79fd8db&quo
t;>
> <error-message>No seller found with id
123456789123456</error-message>
> </error>
>
> Any ideas?
>
> On Aug 21, 4:43 am, "Pablo A. Osso"
<pabloo...gmail.com> wrote:
> > Hi,
> >
> > You could try the HTML API:http://groups.google.com/group/google-ch
eckout-developers-forum/web/a...
> >
> > -Pablo
> >
> > On Aug 20, 6:53 pm, kvedros <kved...gmail.com> wrote:
> >
> > > I would be nice to have a "buy it
now"buttonor "pay here"button
> > > where the user inputs the price.  My products
are custom made and the
> > > price varies based on different variables.
>
>
> >
>


-- 
pablof

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integrationgooglegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribegooglegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: generic "buy it now" button
country flaguser name
United States
2007-08-20 19:23:57
Hi,

Using the Google Checkout HTML API, you can allow your
customers to
enter a price.  Please take a look at the tutorial here:

http://checkout.google.com/support/sell/bin/an
swer.py?answer=64730

-Peng

On Aug 20, 2:53 pm, kvedros <kved...gmail.com> wrote:
> I would be nice to have a "buy it now" button
or "pay here" button
> where the user inputs the price.  My products are
custom made and the
> price varies based on different variables.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integrationgooglegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribegooglegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---


[1-5]

about | contact  Other archives ( Real Estate discussion Medical topics )