Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
i want to add an item to ebay using ebay API and PHP i read their website for hours and i'm lost. i created a developer account. but what should i do after that? i read about "Add item" call http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/AddItem.html but i have no idea on how to use that?
Please help !!
Please check this code here
https://github.com/rishiv3/ebayAddItem
I have made for adding new items on ebay also you can upload max 12 images with that and if needed you can store values on your database as well.
Just grab the keys from registering here
http://developer.ebay.com
Hope it will help you :)
In addition to taking a look at the eBay tutorial, I've thrown a wrapper around the eBay Accelerator toolkit that might be useful for some sample / example code.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I had success setup the Docusign-php-client with everything working!
But how can I access the api directly?
I can only use public/index.php page to test all the samples,
how can I create my own page or own api call?
Is there any simple sample? sorry I‘m newbie on program, please help, thanks!
I'm not clear what you already did since you didn't share code, but I would suggest you start by using https://github.com/docusign/code-examples-php which is a repo with full working code and a PHP app using the DocuSign PHP library/SDK.
Try to use it and see how it work as a means of jump-starting your development.
You can then either modify it to fit your needs or copy/paste relevant pieces of code into your app.
They are 31 PHP examples in here -> https://github.com/docusign/code-examples-php. DocuSign php client is just an API wrapper. If you need more info you can visit https://developers.docusign.com/ for more info
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am trying to use the plesk api in order to use some of its data to a web application and more specifically the data usage and the permitted storage.
I found this article but I wasn't able to find some php code on how I ll retrieve and display the data. Any guidance would be highly appreciated.
Have you checked https://docs.plesk.com/en-US/17.0/api-rpc/creating-client-software/sending-request-packets.28727/?
It shows how to create requests and next page shows response structure.
PHP examples are at https://github.com/plesk/api-examples/tree/master/php.
To display data you will have to parse the xml result first. You can use SimpleXML to do this.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I have an eBay store that I'd like to be able to Search through JUST that store and return the results.
I found the "findItemsIneBayStores" call, but the documentation is kinda confusing(At least to me) and I can't find a good example so I can see how it works, I was hoping that someone could explain to me how it works.
Thank you,
Brandon
Use the storeName parameter in your findItemsIneBayStores call:
The name of the eBay store to search. Returns all items in the store, or can be used with keywords to search for specific items in an eBay store. If you do not specify keywords, you must specify storeName.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
first let me say I am newbe.
I´m trying to make a android app for my work.
I have many info I need to send to a mysql (I know how to send to a mysql) but I have som many info, I need to spred it out on 5-6 pages, but how do I get the info from all the edittext info from page 1 to page 7 ( I use swipe)?
I hope you understand my quiestin.
A link to a site would be nice
Thanks
Dennis
You are probably simply trying to share data across Activities (or Fragments). There are several ways to do this. Here is one good reference:
What's the best way to share data between activities?
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I know how to read and parse XML with PHP, but is there a way to make it auto advance through pages of XML data automatically? I work for a TV station that is featuring open houses via a real estate xml feed and need to show one or two houses at a time for a half hour without requiring someone to sit there and advance the pages themselves. Any thoughts would be appreciated!
You could have PHP output the necessary JavaScript to redirect to the next page.
Here's how to redirect to a new page: How can I make a redirect page in jQuery/JavaScript? combine that with setTimeout() to add a delay.
I'm not sure whether I would rely on this for a live TV feed, though - I'd be too scared of the embarrassment of the browser crashing, or an error popping up....