In: Categories » Internet » APIs and Web Feeds » Developing a Datafeed Strategy
|
What’s the best way to get started with your datafeed marketing? Have a datafeed party! What’s a datafeed party? As first reported in eBay Motors, a datafeed party does not refer to a party with vodka on the rocks, Sushi snacks, and square-dancing music. It refers to the process of sitting down and researching how many places you can send data feeds to sell in new marketplaces. So, have yourself a datafeed party and see how many new marketplaces you can find to sell your [items] with little additional effort. Since writing that for the Motors book, I have softened my hard-core position a little. Yes, it’s OK to drink vodka and eat Sushi snacks during your datafeed party. But you get the point. Sit down and do some research on the Web to find some new marketplaces that you can use cost-effectively to increase your sales. Used Cars The used-car sales firms have utilized datafeeds very effectively to get their vehicles into multiple marketplaces (retail websites) on the Web. In fact, they are the leaders in using this new technique of datafeed marketing . ProcedureWhen holding your datafeed party, here are some steps you need to take: 1. Identify datafeed opportunities by researching on the Web. 2. Determine the relevancy of the target website to what you are selling. For instance, if you sell perfume, a website that features a product comparison directory for scuba diving products may not be the best place for your merchandise, even if the datafeed is free. 3. Determine the market significance. Does the target website get substantial traffic? 4. Decide whether the marketplace a fit. The target website may be relevant with substantial traffic but still be a place where you don’t want to sell your products for one reason or another. 5. Determine set-up costs. Does your auction management service provide a datafeed to the target website, or will you have to arrange special programming? 6. Determine operational costs, including listing or click-through fees charged by the target website. 7. Identify what data you need to provide. Do you need to provide special data that you don’t yet have in your database? 8. Figure out how will you will handle transactions. Do you have to do something special, or will your current capability (e.g., software) handle sales efficiently? 9. Review the cost-effectiveness of using the target website for selling your products. Today there are many opportunities. Tomorrow there will be more. To operate cost-effectively, you will to be selective. Why a Party?Why make this research a one-time project? You will find doing this research in one sitting to be the most efficient. One link leads to another, and you can get a lot done in a morning or a day or a weekend. Doing it piecemeal is more difficult and tedious. However, I don’t want to leave you with the impression that once you’re done, you don’t have to do anything else. Periodically, you need to update your research to discover the new opportunities that inevitably appear. Benefits and BurdensWhat are the benefits and burdens of getting your products out into the general ecommerce marketplace (i.e., outside of eBay)? • Potential to expand your sales cost-effectively • Sell in a catalog format, not an auction format • Sell in marketplace perhaps with less competition • Sell in less complicated marketplaces (e.g., no non-paying-buyers and other complications) • Tap into new markets with different types of consumers than the eBay market are also burdens to expanding sales into other marketplaces: • Takes extra time to work other marketplaces even with the use of datafeeds available in auction management services • Many datafeed marketplaces charge fees • Different marketplace may have different transaction procedures requiring additional programming and supervision • Makes invntory management more complex Datafeed marketing presents a tremendous new opportunity for you. It’s well worth doing. But you have to be intelligent in how you do it so as to minimize expenses and optimize profits. Cost-Effectiveness ReviewWhat does cost-effectiveness mean in regard to datafeeds? Well, there are only a few things to consider: How much of your time will it take do the datafeed effectively? It could be as simple as clicking on a button in your auction management service. It could be as complex as setting up a datafeed procedure. How much will it cost? Can you do do the datafeed yourself in a short time, or will you need to hire someone to set it up for you? How much money does it cost, if anything, to place your products on the target website? What will it take to handle orders from other marketplaces? Can you do it with the software you are already using, or will it require something additional? The datafeed itself is a software problem. It should be easy and inexpensive to conquer. Moreover, your auction management service should make datafeeds easy. If not, it may be time to move on to a more useful service. The money question is straightforward. Is the datafeed presentation worth the fees charged? Like all advertising, only experimentation will tell. If the target website is free, the money cost is zero; although you will still want to look at the relevancy and traffic count. Assuming the datafeed is easy, the target website has high traffic and is relevant, and the product listings are free (e.g., Froogle), a datafeed to a new marketplace can be one of the most cost-effective means of Web marketing. This is exciting not only because it is potentially quite inexpensive but also because it is new (i.e., undiscovered). This is a good place to focus your efforts to build your eBay traffic.
|
legal disclaimer
1) Our website is not responsible for the information contained by this article as well for any and all copyright infringements by authors and writers. E-articles is a free information resource. If you suspect this article for any copyright infringements, please read the Terms of service and contact us to investigate the problem.
2) The E-articles directory team is not responsible for inaccuracies, falsehoods, or any other types of misinformation this tutorial may contain and will not be liable for any loss or damage suffered by a user through the user's reliance on the information gained here. Please read the Terms of service
Useful tools and features
related articles
Like REST, implementing SOAP involves both generating requests and then handling the response. Whereas handling the SOAP response is similar to the REST result, generating the SOAP request is quite different. Generating Requests Unlike REST, it is rather uncommon to see requests generated manually, though it can still be done. Generally, SOAP requests are either generated with a generic tool (like NuSOAP or Pear:SOAP) or with an application-specific class or module. Manual generation is covered here (a good understan...
2. REST API vs SOAP API technology
The two primary architectures for APIs are REST and SOAP. When creating your API, you really have three options: REST, SOAP, or both. REST APIs are known for being easy and quick to develop for, but the entire request is sent in the clear regardless of the type of encryption used. SOAP APIs are more complex, requiring more effort to generate the response and handle the request, but allow for greater flexibility by adding namespace support. Providing APIs of both types may sound like an attractive option, but keep in mind that it will double ...
3. Advantages and Disadvantages of SSL ~ API related
Configuring your web server to present the API over an SSL connection adds protection for both the request and response bodies, while requiring little to no additional coding for the API. Remember that the use of a server certificate only authenticates the server for the client, it does nothing to identify the client itself. It is best used layered with one of the previous two examples. Advantages: Encryption — Both request and response bodies are protected from intermediate prying eyes. ...
4. How SOAP Works
A SOAP request will involve creating and populating a request envelope, which contains all the required information (as specified by the WSDL document), transmitting that envelope to the API server, and handling the response. A SOAP request generally contains all of the following elements: SOAP Envelope — With namespace inclusions. SOAP Body — Possibly defining additional namespaces. Desired Action — How the desired action is represented will depen...
Feeds have several advantages, primarily related to consumption, over traditional HTML formats. Many desktop applications are devoted to reading feeds at regular intervals, and many of the new batch of web browsers include features for reading feeds. These free the user from manually checking various sources (websites) for new information. Instead, the automated tool checks the subscribed feeds every few minutes and presents them to the user (usually organized in a user-configurable manner). The standard and predictable format makes this a m...
6. How REST Works
Generally speaking, a REST request will involve sending a request to a special URL (similar to what you would see after filling out a form using the GET method), then receiving an XML document containing the server's response. The XML response is then parsed, and the desired information is extracted and acted upon. Each REST request generally has several common elements: Endpoint URL — The full address for the desired script. A REST service might have only a single script that handles all request type...
7. How to implement the REST technology
There are two sides to this tale, the first is how to generate legitimate REST requests, and the second is how to handle the responses correctly. Generating Requests When it comes to generating the request, you have three main options. First, you can generate the request manually, using PHP's header functions. This gives you complete flexibility in generating the request, but does involve the most coding. Second, you can use one of PHP's built-in request functions such as file_get_contents() or file()/fopen(), fread(...
8. Important Considerations When Using Feeds
XML feeds provide a great resource of information, but their use is not without its own special considerations. Security and legal concerns go hand in hand whether you are producing or consuming feeds. Consider if you will the implications of going away for the weekend, only to discover that your aggregator has been attacked, your site is now displaying wildly inaccurate information provided by the attacker, and your legal department is fielding not-so-nice phone calls regarding the current content of your homepage. Also consider how often...
9. Advantages and Disadvantages of Client Side Certificates
The API server can generate a certificate and provide it to the client via a secure channel before any requests are made. This certificate is then used in the authentication process; this confirms the identity of both the client and server before requests are made. Although this method provides the greatest level of security (barring a dedicated VPN connection, which won't be covered here), it also has the most strenuous requirements on both sides: not all modules (say, NuSOAP) can handle client-side certificates. Advantages:...
10. What are Feeds ~ RSS and ATOM Feed Specifications
You can think of feeds as small modules of information that can be plugged into existing websites, consumed by clients on their desktop, or consumed by aggregators to be presented by users with other feeds. Aggregators also offer searching functionality to users, allowing new users to locate your site and feed (a great reason to provide a feed in the first place). Websites such as Yahoo! produce web feeds. Software that downloads and uses feeds is said to consume or aggregate feeds. Sites such ...










