Image | ![]() |
EAN-13 | 9780761943044 ![]() |
Product Name | The Social Organization: How To Use Social Media To Tap The Collective Genius Of Your Customers And Employees |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Hardcover |
Amazon.com | ![]() |
Price New | 9.69 US Dollars (curriencies) |
Price Used | 4.90 US Dollars (curriencies) |
Width | 1 inches (convert) |
Height | 9.3 inches (convert) |
Length | 6.4 inches (convert) |
Weight | 17.28 ounces (convert) |
Author | Anthony J. Bradley, Mark P. Mcdonald |
Page Count | 272 |
Binding | Hardcover |
Published | 10/18/2011 |
Long Description | As a leader, it's your job to extract maximum talent, energy, knowledge, and innovation from your customers and employees. But how? In The Social Organization , two of Gartner's lead analysts strongly advocate exploiting social technology. The authors share insights from their study of successes and failures at more than four hundred organizations that have used social technologies to fosterand capitalize oncustomers’ and employees’ collective efforts. But the new social technology landscape isn’t about the technology. It’s about building communities, fostering new ways of collaborating, and guiding these efforts to achieve a purpose. To that end, the authors identify the core disciplines managers must master to translate community collaboration into otherwise impossible results: Vision : defining a compelling vision of progress toward a highly collaborative organization. Strategy : taking community collaboration from risky and random success to measurable business value. Purpose : rallying people around a clear purpose, not just providing technology. Launch : creating a collaborative environment and gaining adoption. Guide : participating in and influencing communities without stifling collaboration. Adapt : responding creatively to change in order to better support community collaboration. The Social Organization highlights the benefits and challenges of using social technology to tap the power of people, revealing what managers must do to make collaboration a source of enduring competitive advantage. |
Similar Items | 9781605097022: The New Social Learning: A Guide To Transforming Organizations Through Social Media 9780789747990: Smart Business, Social Business: A Playbook For Social Media In Your Organization (Que Biz-Tech) 9780071816410: The Social Employee: How Great Companies Make Social Media Work (Business Books) 9781449319052: The Connected Company 9783838100579: Social Media Roi: Managing And Measuring Social Media Efforts In Your Organization (Que Biz-Tech) 9780789747419: Social Media Roi: Managing And Measuring Social Media Efforts In Your Organization (Que Biz-Tech) 9780071782302: The Collaborative Organization: A Strategic Guide to Solving Your Internal Business Challenges Using Emerging Social and Collaborative Tools (Business Books) 9780314046017: Digital Strategies for Powerful Corporate Communications (Business Books) 9780071606028: Digital Strategies for Powerful Corporate Communications (Business Books) 9781118273210: Social Business By Design: Transformative Social Media Strategies For The Connected Company View 33 more similar items |
Created | 09-11-2012 1:06:01am |
Modified | 05-01-2020 1:02:39am |
MD5 | 73cef11d4a4e060cf55612ba6421bff2 |
SHA256 | dfbd28142a75bd5ad904a424f89066712a83de1166e5b4a0551bb238271eb46c |
Search Google | by EAN or by Title |
Query Time | 0.0193880 |
Article of interest
So you want to upload product images but you don't want to do it manually. Our system allows you to upload through automation if you have an active data feed account.
The Basics
You will need to send the file along with some other infomation in the form of a POST to our web server. You do not need to log-in or keep track of cookies. You will need to pass your keycode with every file you try to upload.
It is important that you check the results of every upload to make sure things are going correctly. Normally, if things go right you will get back an HTTP response code of 200 and the word "Success!" as the only content. If things go wrong, the HTTP response will be 400 or some value other han 200 depending on the problem. You can examine the content that is sent back for more details about the error.
When you send a POST request to http://eandata.com/upload_image.php with the the following required fields.
- keycode - this is your API keycode from the data feed page.
- code - this is the 13 digit EAN-13 code for the product. If you have a code that is 12 digits, prefix it with a leading zero. If you are trying to update using ISBN or UPC-E you will get an error so expand the code to 13 digits before uploading.
- img - this is the actual image file which must be JPG, PNG or GIF format.
As long as the product exists in our system and there is not already an image associated with the product, the file should upload and be resized. All images are stored in PENDING mode until they are approved by a human. Users may be able to access the pending images but they will get a warning before the image is displayed to them.
Coding Samples And Links
We simply can't give you every possible way to access our data through automation but we can offer some code samples or at a minimum links to other resourses that will help you get your project going.
- cURL
- link: cURL Manual
- sample:
curl -F "keycode={your-keycode-goes-here}" -F "code={ean-13-code}" -F "img=@{path-to-image-file}" https://eandata.com/upload_image.php
- link: cURL Manual
- jQuery / Javascript
- Not recommended because it would expose your private key to the browser. You should post to a backend function of your own, then perform a server-to-server upload.
- C#
- link: The Code Project
- VBScript, ASP, VB6
- link: EricPhelps.com
If you have other resources that you would like us to add to our collection, or you find that our links are broken, please use the link at the bottom of the screen to contact us. Comments are also much appreciated.