What is a rewritable API?

I recently heard the term "Writable API", which is completely new to me. Can anyone explain what this means?

+3
source share
3 answers

A public record API is an API that allows anyone to connect metadata to objects in the owner’s database without changing the original content.

For example, take this object: http://twitter.com/#!/MarsPhoenix/status/1917793215 . This is a tweet from Phenonix Mars Lander.

Twitter is owned by Twitter. But what if I want to tag it and share these tags with the world?

Twitter API-, . , "mars" "nasa" , devon/tag: mars devon/tag: nasa . Bob "phoenix", bob/tag: phoenix Twitter.

, Twitter .

, :

http://blogs.fluidinfo.com/fluidinfo/2011/02/14/what-is-a-writable-api/

+3

A Writable API will be an API that allows you to write data to the target system / platform, rather than to a read-only API.

For example, StackOverflow / StackExchange provides a read-only API and the Twitter API Writable.

+1
source

Source: https://habr.com/ru/post/1792073/


All Articles