Anapplication programming interface(abbreviatedAPI) is a way for two or morecomputer programsor components to communicate with each other. It is a type ofsoftware interface,offering a service to other pieces ofsoftware.[1]A document or standard that describes how to build or use such a connection or interface is called anAPI specification.A computer system that meets this standard is said toimplementorexposean API. The term API may refer either to the specification or to the implementation. Whereas a system'suser interfacedictates how its end-users interact with the system in question, its API dictates how to write code that takes advantage of that system's capabilities.

Screenshot ofWeb APIdocumentation written byNASAdemonstrating the use ofAPOD

In contrast to a user interface, which connects a computer to a person, an application programming interface connects computers or pieces of software to each other. It is not intended to be used directly by a person (theend user) other than a computerprogrammerwho is incorporating it into the software. An API is often made up of different parts which act as tools or services that are available to the programmer. A program or a programmer that uses one of these parts is said tocallthat portion of the API. The calls that make up the API are also known assubroutines,methods, requests, orendpoints.An API specificationdefinesthese calls, meaning that it explains how to use or implement them.

One purpose of APIs is tohide the internal detailsof how a system works, exposing only those parts that a programmer will find useful, and keeping them consistent even if the internal details change later. An API may be custom-built for a particular pair of systems, or it may be a shared standard allowinginteroperabilityamong many systems.

There are APIs forprogramming languages,software libraries,computeroperating systems,andcomputer hardware.APIs originated in the 1940s, though the term did not emerge until the 1960s and 1970s. Contemporary usage of the term API often refers toWeb APIs,[2]which allow communication between computers that are joined by theInternet.Recent developments in APIs have led to the rise in popularity ofmicroservices,which are loosely coupled services accessed through public APIs.[3]

APIs should beversioned.There are two common versioning strategies:[4]

  • Additive change strategy: new features are added without modifying existing ones. Any update must bebackward compatible.This strategy is suitable for small projects with low rate of change.
  • Explicit version strategy: this strategy allows making any changes including breaking changes. This strategy is suitable for complex applications and complex changes.

Purpose

edit

In building applications, an API simplifies programming byabstractingthe underlying implementation and only exposing objects or actions the developer needs. While a graphical interface for anemail clientmight provide a user with a button that performs all the steps for fetching and highlighting new emails, an API for fileinput/outputmight give the developer afunctionthat copies a file from one location to another without requiring that the developer understand thefile systemoperations occurring behind the scenes.[5]

History of the term

edit
A diagram from 1978 proposing the expansion of the idea of the API to become a general programming interface, beyondapplication programsalone[6]

The termAPIinitially described an interface only for end-user-facing programs, known asapplication programs.This origin is still reflected in the name "application programming interface." Today, the term is broader, including alsoutility softwareand evenhardware interfaces.[7]

1940s and 1950s

edit

The idea of the API is much older than the term itself. British computer scientistsMaurice WilkesandDavid Wheelerworked on a modularsoftware libraryin the 1940s forEDSAC,an early computer. Thesubroutinesin this library were stored onpunched tapeorganized in afiling cabinet.This cabinet also contained what Wilkes and Wheeler called a "library catalog" of notes about each subroutine and how to incorporate it into a program. Today, such a catalog would be called an API (or an API specification or API documentation) because it instructs a programmer on how to use (or "call" ) each subroutine that the programmer needs.[7]

Wilkes and Wheeler's 1951 bookThe Preparation of Programs for an Electronic Digital Computercontains the first published API specification.Joshua Blochconsiders that Wilkes and Wheeler "latently invented" the API because it is more of a concept that is discovered than invented.[7]

Although the people who coined the term API were implementing software on aUnivac 1108,the goal of their API was to makehardware independentprograms possible.[8]

1960s and 1970s

edit

The term "application program interface" (without an‑ingsuffix) is first recorded in a paper calledData structures and techniques for remotecomputer graphicspresented at anAFIPSconference in 1968.[9][7]The authors of this paper use the term to describe the interaction of an application—a graphics program in this case—with the rest of the computer system. A consistent application interface (consisting ofFortransubroutine calls) was intended to free the programmer from dealing with idiosyncrasies of the graphics display device, and to providehardware independenceif the computer or the display were replaced.[8]

The term was introduced to the field ofdatabasesbyC. J. Date[10]in a 1974 paper calledTheRelationalandNetworkApproaches: Comparison of the Application Programming Interface.[11]An API became a part of theANSI/SPARC frameworkfordatabase management systems.This framework treated the application programming interface separately from other interfaces, such as the query interface. Database professionals in the 1970s observed these different interfaces could be combined; a sufficiently rich application interface could support the other interfaces as well.[6]

This observation led to APIs that supported all types of programming, not just application programming.

1990s

edit

By 1990, the API was defined simply as "a set of services available to a programmer for performing certain tasks" by technologistCarl Malamud.[12]

The idea of the API was expanded again with the dawn ofremote procedure callsandWeb APIs.Ascomputer networksbecame common in the 1970s and 1980s, programmers wanted to call libraries located not only on their local computers but on computers located elsewhere. These remote procedure calls were well supported by theJavalanguage in particular. In the 1990s, with the spread of theinternet,standards likeCORBA,COM,andDCOMcompeted to become the most common way to expose API services.[13]

2000s

edit

Roy Fielding's dissertationArchitectural Styles and the Design of Network-based Software ArchitecturesatUC Irvinein 2000 outlinedRepresentational state transfer(REST) and described the idea of a "network-based Application Programming Interface" that Fielding contrasted with traditional "library-based" APIs.[14]XMLandJSONWeb APIs saw widespread commercial adoption beginning in 2000 and continuing as of 2022. The Web API is now the most common meaning of the term API.[2]

TheSemantic Webproposed byTim Berners-Leein 2001 included "semantic APIs" that recasts the API as anopen,distributed data interface rather than a software behavior interface.[15]Proprietaryinterfaces and agents became more widespread than open ones, but the idea of the API as a data interface took hold. Because Web APIs are widely used to exchange data of all kinds online, API has become a broad term describing much of the communication on the internet.[13]When used in this way, the term API has overlap in meaning with the termcommunication protocol.

Usage

edit

Libraries and frameworks

edit

The interface to asoftware libraryis one type of API. The API describes and prescribes the "expected behavior" (a specification) while the library is an "actual implementation" of this set of rules.

A single API can have multiple implementations (or none, being abstract) in the form of different libraries that share the same programming interface.

The separation of the API from its implementation can allow programs written in one language to use a library written in another. For example, becauseScalaandJavacompile to compatiblebytecode,Scala developers can take advantage of any Java API.[16]

API use can vary depending on the type of programming language involved. An API for aprocedural languagesuch asLuacould consist primarily of basic routines to execute code, manipulate data or handle errors while an API for anobject-oriented language,such as Java, would provide a specification of classes and itsclass methods.[17][18]Hyrum's law states that "With a sufficient number of users of an API, it does not matter what you promise in the contract: all observable behaviors of your system will be depended on by somebody."[19]Meanwhile, several studies show that most applications that use an API tend to use a small part of the API.[20]

Language bindingsare also APIs. By mapping the features and capabilities of one language to an interface implemented in another language, a language binding allows a library or service written in one language to be used when developing in another language.[citation needed]

Tools such asSWIGand F2PY, aFortran-to-Pythoninterface generator, facilitate the creation of such interfaces.[21]

An API can also be related to asoftware framework:a framework can be based on several libraries implementing several APIs, but unlike the normal use of an API, the access to the behavior built into the framework is mediated by extending its content with new classes plugged into the framework itself.

Moreover, the overall program flow of control can be out of the control of the caller and in the framework's hands byinversion of controlor a similar mechanism.[22][23]

Operating systems

edit

An API can specify the interface between an application and theoperating system.[24]POSIX,for example, provides a set of common API specifications that aim to enable an application written for a POSIX conformant operating system to becompiledfor another POSIX conformant operating system.

LinuxandBerkeley Software Distributionare examples of operating systems that implement the POSIX APIs.[25]

Microsofthas shown a strong commitment to a backward-compatible API, particularly within itsWindows API(Win32) library, so older applications may run on newer versions of Windows using an executable-specific setting called "Compatibility Mode".[26]

An API differs from anapplication binary interface(ABI) in that an API is source code based while an ABI isbinarybased. For instance,POSIXprovides APIs while theLinux Standard Baseprovides an ABI.[27][28]

Remote APIs

edit

Remote APIs allow developers to manipulate remote resources through communication protocols, specific standards for communication that allow different technologies to work together, regardless of language or platform. For example, the Java Database Connectivity API allows developers to query many different types ofdatabaseswith the same set of functions, while theJava remote method invocationAPI uses the Java Remote Method Protocol to allowinvocationof functions that operate remotely but appear local to the developer.[29][30]

Therefore, remote APIs are useful in maintaining the object abstraction inobject-oriented programming;amethod call,executed locally on aproxyobject, invokes the corresponding method on the remote object, using the remoting protocol, and acquires the result to be used locally as a return value.

A modification of the proxy object will also result in a corresponding modification of the remote object.[31]

Web APIs

edit

Web APIs are a service accessed from client devices (mobile phones, laptops, etc.) to aWeb serverusing theHypertext Transfer Protocol(HTTP). Client devices send a request in the form of an HTTP request, and are met with a response message usually in JavaScript Object Notation (JSON) or Extensible Markup Language (XML) format. Developers typically use Web APIs to query a server for a specific set of data from that server.

An example might be a shipping company API that can be added to an eCommerce-focused Web site to facilitate ordering shipping services and automatically include current shipping rates, without the site developer having to enter the shipper's rate table into a Web database. While "Web API" historically has been virtually synonymous withWeb service,the recent trend (so-calledWeb 2.0) has been moving away from Simple Object Access Protocol (SOAP) based Web services andservice-oriented architecture(SOA) towards more directrepresentational state transfer(REST) styleWeb resourcesandresource-oriented architecture(ROA).[32]Part of this trend is related to theSemantic Webmovement towardResource Description Framework(RDF), a concept to promote web-basedontology engineeringtechnologies. Web APIs allow the combination of multiple APIs into new applications known asmashups.[33]

In the social media space, Web APIs have allowed Web communities to facilitate sharing content and data between communities and applications. In this way, content that is created in one place dynamically can be posted and updated to multiple locations on the Web.[34]For example, Twitter's REST API allows developers to access core Twitter data and the Search API provides methods for developers to interact with Twitter Search and trends data.[35]

Design

edit

The design of an API has a significant impact on its usage.[5]First of all, the design of programming interfaces represents an important part ofsoftware architecture,the organization of a complex piece of software.[36]The principle ofinformation hidingdescribes the role of programming interfaces as enablingmodular programmingby hiding the implementation details of the modules so that users of modules need not understand the complexities inside the modules.[37] Aside from the previous underlying principle, other metrics for measuring the usability of an API may include properties such as functional efficiency, overall correctness, and learnability for novices.[38]One straightforward and commonly adopted way of designing APIs is to followNielsen's heuristicevaluation guidelines. TheFactory method patternis also typical in designing APIs due to their reusable nature.[39]Thus, the design of an API attempts to provide only the tools a user would expect.[5]

Synchronous versus asynchronous

edit

An application programming interface can besynchronous or asynchronous.A synchronous API call is a design pattern where the call site is blocked while waiting for the called code to finish.[40]With an asynchronous API call, however, the call site is not blocked while waiting for the called code to finish, and instead the calling thread is notified when the reply arrives.

Security

edit

API security is very critical when developing a public facing API. Common threats includeSQL injection,Denial-of-service attack(DoS), broken authentication, and exposing sensitive data.[41]Without ensuring proper security practices, bad actors can get access to information they should not have or even gain privileges to make changes to your server. Some common security practices include proper connection security usingHTTPS,content security to mitigate data injection attacks, and requiring an API key to use your service.[42]Many public facing API services require you to use an assigned API key, and will refuse to serve data without sending the key with your request.[43]

Release policies

edit

APIs are one of the more common ways technology companies integrate. Those that provide and use APIs are considered as being members of a business ecosystem.[44]

The main policies for releasing an API are:[45]

  • Private:The API is for internal company use only.
  • Partner:Only specific business partners can use the API. For example,vehicle for hirecompanies such asUberandLyftallow approved third-party developers to directly order rides from within their apps. This allows the companies to exercise quality control by curating which apps have access to the API and provides them with an additional revenue stream.[46]
  • Public:The API is available for use by the public. For example,Microsoftmakes theWindows APIpublic, andApplereleases its APICocoaso that software can be written for theirplatforms.Not all public APIs are generally accessible by everybody. For example, Internet service providers like Cloudflare or Voxility, useRESTfulAPIs to allow customers and resellers access to their infrastructure information, DDoS stats, network performance, or dashboard controls.[47]Access to such APIs is granted either by "API tokens", or customer status validations.[48]

Public API implications

edit

An important factor when an API becomes public is its "interface stability". Changes to the API—for example adding new parameters to a function call—could break compatibility with the clients that depend on that API.[49]

When parts of a publicly presented API are subject to change and thus not stable, such parts of a particular API should be documented explicitly as "unstable". For example, in theGoogle Guavalibrary, the parts that are considered unstable, and that might change soon, are marked with theJava annotation@Beta.[50]

A public API can sometimes declare parts of itself asdeprecatedor rescinded. This usually means that part of the API should be considered a candidate for being removed, or modified in a backward incompatible way. Therefore, these changes allow developers to transition away from parts of the API that will be removed or not supported in the future.[51]

On February 19, 2020,Akamaipublished their annual "State of the Internet" report, showcasing the growing trend of cybercriminals targeting public API platforms at financial services worldwide. From December 2017 through November 2019, Akamai witnessed 85.42 billion credential violation attacks. About 20%, or 16.55 billion, were against hostnames defined as API endpoints. Of these, 473.5 million have targeted financial services sector organizations.[52]

Documentation

edit

API documentation describes the services an API offers and how to use those services, aiming to cover everything a client would need to know for practical purposes.

Documentation is crucial for the development and maintenance of applications using the API.[53] API documentation is traditionally found in documentation files but can also be found in social media such as blogs, forums, and Q&A websites.[54]

Traditional documentation files are often presented via a documentation system, such as Javadoc or Pydoc, that has a consistent appearance and structure. However, the types of content included in the documentation differ from API to API.[55]

In the interest of clarity, API documentation may include a description of classes and methods in the API as well as "typical usage scenarios, code snippets, design rationales, performance discussions, and contracts", but implementation details of the API services themselves are usually omitted.

Reference documentation for a REST API can be generated automatically from an OpenAPI document, which is a machine-readable text file that uses a prescribed format and syntax defined in theOpenAPI Specification.The OpenAPI document defines basic information such as the API's name and description, as well as describing operations the API provides access to.[56]

API documentation can be enriched with metadata information likeJava annotations.This metadata can be used by the compiler, tools, and by therun-timeenvironment to implement custom behaviors or custom handling.[57]

edit

In 2010, Oracle Corporation sued Google for having distributed a new implementation of Java embedded in the Android operating system.[58]Google had not acquired any permission to reproduce the Java API, although permission had been given to the similar OpenJDK project. Google had approached Oracle to negotiate a license for their API, but were turned down due to trust issues. Despite the disagreement, Google chose to use Oracle's code anyway. JudgeWilliam Alsupruled in theOracle v. Googlecase that APIs cannot becopyrightedin the U.S and that a victory for Oracle would have widely expanded copyright protection to a "functional set of symbols" and allowed the copyrighting of simple software commands:

To accept Oracle's claim would be to allow anyone to copyright one version of code to carry out a system of commands and thereby bar all others from writing its different versions to carry out all or part of the same commands.[59][60]

Alsup's ruling was overturned in 2014 on appeal to theCourt of Appeals for the Federal Circuit,though the question of whether such use of APIs constitutesfair usewas left unresolved.[61][62]

In 2016, following a two-week trial, a jury determined that Google's reimplementation of the Java API constitutedfair use,but Oracle vowed to appeal the decision.[63]Oracle won on its appeal, with the Court of Appeals for the Federal Circuit ruling that Google's use of the APIs did not qualify for fair use.[64]In 2019, Google appealed to theSupreme Court of the United Statesover both the copyrightability and fair use rulings, and the Supreme Court granted review.[65]Due to theCOVID-19 pandemic,the oral hearings in the case were delayed until October 2020.[66]

The case was decided by the Supreme Court in Google's favor with a ruling of 6–2. JusticeStephen Breyerdelivered the opinion of the court and at one point mentioned that "The declaring code is, if copyrightable at all, further than are most computer programs from the core of copyright." This means the code used in APIs are more similar to dictionaries than novels in terms of copyright protection.[67]

Examples

edit

See also

edit

References

edit
  1. ^Reddy, Martin (2011).API Design for C++.Elsevier Science. p. 1.ISBN9780123850041.Archivedfrom the original on 2023-04-15.Retrieved2023-03-21.
  2. ^abLane, Kin (October 10, 2019)."Intro to APIs: History of APIs".Postman.Archivedfrom the original on September 11, 2020.RetrievedSeptember 18,2020.When you hear the acronym "API" or its expanded version "Application Programming Interface", it is almost always in reference to our modern approach, in that we use HTTP to provide access to machine readable data in a JSON or XML format, often simply referred to as "Web APIs". APIs have been around almost as long as computing, but modern Web APIs began taking shape in the early 2000s.
  3. ^Wood, Laura (2021-08-25)."Global Cloud Microservices Market (2021 to 2026)".businesswire.Archivedfrom the original on 2022-04-08.Retrieved2022-03-29.
  4. ^Designing Web APIs Building APIs That Developers Love.O'Reilly Media. 2018.ISBN9781492026877.
  5. ^abcClarke, Steven (2004)."Measuring API Usability".Dr. Dobb's.Archivedfrom the original on 3 March 2022.Retrieved29 July2016.
  6. ^abDatabase architectures – a feasibility workshop(Report). Washington, DC: U.S. Department of Commerce, National Bureau of Standards. April 1981. pp. 45–47.hdl:2027/mdp.39015077587742.LCCN81600004.NBS special publication 500-76.RetrievedSeptember 18,2020.
  7. ^abcdBloch, Joshua(August 8, 2018).A Brief, Opinionated History of the API(Speech). QCon. San Francisco: InfoQ.Archivedfrom the original on September 22, 2020.RetrievedSeptember 18,2020.
  8. ^abCotton, Ira W.; Greatorex, Frank S. (December 1968)."Data structures and techniques for remote computer graphics".AFIPS '68: Proceedings of the December 9–11, 1968, Fall Joint Computer Conference.AFIPS 1968 Fall Joint Computer Conference. Vol. I. San Francisco, California: Association for Computing Machinery. pp. 533–544.doi:10.1145/1476589.1476661.ISBN978-1450378994.OCLC1175621908.Archivedfrom the original on 2020-10-20.Retrieved2020-09-19.
  9. ^"application program interface".Oxford English Dictionary(Online ed.).Oxford University Press.(Subscription orparticipating institution membershiprequired.)
  10. ^Date, C. J.(2019).E. F. Codd and Relational Theory: A Detailed Review and Analysis of Codd's Major Database Writings.Lulu. p. 135.ISBN978-1684705276.
  11. ^Date, C. J.; Codd, E. F. (January 1975). "The relational and network approaches: Comparison of the application programming interfaces". In Randall Rustin (ed.).Proceedings of 1974 ACM-SIGMOD Workshop on Data Description, Access and Control.SIGMOD Workshop 1974. Vol. 2. Ann Arbor, Michigan: Association for Computing Machinery. pp. 83–113.doi:10.1145/800297.811532.ISBN978-1450374187.OCLC1175623233.
  12. ^Carl, Malamud(1990).Analyzing Novell Networks.Van Nostrand Reinhold. p. 294.ISBN978-0442003647.Archivedfrom the original on 2021-01-26.Retrieved2020-09-19.
  13. ^abJin, Brenda; Sahni, Saurabh; Shevat, Amir (2018).Designing Web APIs.O'Reilly Media.ISBN9781492026877.Archivedfrom the original on 2023-04-10.Retrieved2023-03-21.
  14. ^Fielding, Roy (2000).Architectural Styles and the Design of Network-based Software Architectures(PhD). University of California, Irvine.Archivedfrom the original on January 22, 2020.RetrievedSeptember 18,2020.
  15. ^Dotsika, Fefie (August 2010). "Semantic APIs: Scaling up towards the Semantic Web".International Journal of Information Management.30(4): 335–342.doi:10.1016/j.ijinfomgt.2009.12.003.
  16. ^Odersky, Martin; Spoon, Lex; Venners, Bill (10 December 2008)."Combining Scala and Java".artima.Archivedfrom the original on 8 August 2016.Retrieved29 July2016.
  17. ^de Figueiredo, Luiz Henrique;Ierusalimschy, Roberto;Filho, Waldemar Celes (1994)."The design and implementation of a language for extending applications".TeCGraf Grupo de Tecnologia Em Computacao Grafica:273–284.CiteSeerX10.1.1.47.5194.S2CID59833827.Retrieved29 July2016.
  18. ^Sintes, Tony (13 July 2001)."Just what is the Java API anyway?".JavaWorld.Archivedfrom the original on 2020-10-19.Retrieved2020-07-18.
  19. ^Winters, Titus; Tom Manshreck; Hyrum Wright, eds. (2020).Software engineering at Google: lessons learned from programming over time.Sebastopol, CA: O'Reilly Media.ISBN9781492082798.OCLC1144086840.
  20. ^Mastrangelo, Luis; Ponzanelli, Luca; Mocci, Andrea; Lanza, Michele; Hauswirth, Matthias; Nystrom, Nathaniel (2015-10-23). "Use at your own risk: the Java unsafe API in the wild".Proceedings of the 2015 ACM SIGPLAN International Conference on Object-Oriented Programming, Systems, Languages, and Applications.OOPSLA 2015. New York, New York, U.S.: Association for Computing Machinery. pp. 695–710.doi:10.1145/2814270.2814313.ISBN978-1-4503-3689-5.
  21. ^"F2PY.org".F2PY.org.Archivedfrom the original on 2011-07-04.Retrieved2011-12-18.
  22. ^Fowler, Martin."Inversion Of Control".Archivedfrom the original on 2011-01-23.Retrieved2011-08-25.
  23. ^Fayad, Mohamed."Object-Oriented Application Frameworks".Archivedfrom the original on 2013-11-05.Retrieved2013-11-05.
  24. ^Lewine, Donald A. (1991).POSIX Programmer's Guide.O'Reilly & Associates, Inc. p. 1.ISBN9780937175736.Archivedfrom the original on 22 August 2016.Retrieved2 August2016.
  25. ^West, Joel; Dedrick, Jason (2001)."Open source standardization: the rise of Linux in the network era"(PDF).Knowledge, Technology & Policy.14(2): 88–112.doi:10.1007/PL00022278.S2CID46082812.Archived(PDF)from the original on 27 August 2016.Retrieved2 August2016.
  26. ^ Microsoft (October 2001)."Support for Windows XP".Microsoft. p. 4. Archived fromthe originalon 2009-09-26.
  27. ^"LSB Introduction".Linux Foundation. 21 June 2012. Archived fromthe originalon 2015-04-02.Retrieved2015-03-27.
  28. ^Stoughton, Nick (April 2005)."Update on Standards"(PDF).USENIX.Archived(PDF)from the original on 2009-03-27.Retrieved2009-06-04.
  29. ^Bierhoff, Kevin (23 April 2009).API Protocol Compliance in Object-Oriented Software(PDF)(PhD). Carnegie Mellon University.ISBN978-1-109-31660-5.ProQuest304864018.Archived(PDF)from the original on 11 October 2016.Retrieved29 July2016.
  30. ^Wilson, M. Jeff (10 November 2000)."Get smart with proxies and RMI".JavaWorld.Archivedfrom the original on 2020-07-20.Retrieved2020-07-18.
  31. ^Henning, Michi; Vinoski, Steve (1999).Advanced CORBA Programming with C++.Addison-Wesley.ISBN978-0201379273.Retrieved16 June2015.
  32. ^Benslimane, Djamal; Schahram Dustdar; Amit Sheth (2008)."Services Mashups: The New Generation of Web Applications".IEEE Internet Computing, vol. 12, no. 5.Institute of Electrical and Electronics Engineers. pp. 13–15.Archivedfrom the original on 2023-10-07.Retrieved2019-10-01.
  33. ^Niccolai, James (2008-04-23),"So What Is an Enterprise Mashup, Anyway?",PC World,archived fromthe originalon Oct 10, 2017
  34. ^Parr, Ben (21 May 2009)."The Evolution of the Social Media API".Mashable.Archived fromthe originalon Aug 11, 2016.Retrieved26 July2016.
  35. ^"GET trends/place".Twitter Developer Platform.Archivedfrom the original on 2020-06-17.Retrieved2020-04-30.
  36. ^Garlan, David; Shaw, Mary (January 1994)."An Introduction to Software Architecture"(PDF).Advances in Software Engineering and Knowledge Engineering.1.Archived(PDF)from the original on 6 May 2021.Retrieved8 August2016– via CMU School of Computer Science.
  37. ^Parnas, D.L. (1972)."On the Criteria To Be Used in Decomposing Systems into Modules".Communications of the ACM.15(12): 1053–1058.doi:10.1145/361598.361623.S2CID53856438.
  38. ^Myers, Brad A.; Stylos, Jeffrey (2016)."Improving API usability".Communications of the ACM.59(6): 62–69.doi:10.1145/2896587.S2CID543853.
  39. ^Brian Ellis, Jeffrey Stylos, and Brad Myers. 2007. "The Factory Pattern in API Design: A Usability EvaluationArchived2022-03-21 at theWayback Machine".InProceedings of the 29th international conference on Software Engineering(ICSE '07). IEEE Computer Society, USA, 302–312.doi:10.1109/ICSE.2007.85.
  40. ^"Synchronous vs. Asynchronous Writes - Packaged Contact Center Enterprise" - Cisco DevNetArchived2022-08-03 at theWayback Machine.
  41. ^Silva, Paulo (2019)."Global Cloud Microservices Market (2021 to 2026)".Archivedfrom the original on 2020-02-18.Retrieved2022-03-29.
  42. ^"Web Security".2022-02-18.Archivedfrom the original on 2022-04-02.Retrieved2022-03-29.
  43. ^"API Keys – What Is an API Key? | APILayer Blog".2022-03-01.Archivedfrom the original on 2022-05-16.Retrieved2022-07-15.
  44. ^de Ternay, Guerric (Oct 10, 2015)."Business Ecosystem: Creating an Economic Moat".BoostCompanies.Archived fromthe originalon 2016-09-17.Retrieved2016-02-01.
  45. ^Boyd, Mark (2014-02-21)."Private, Partner or Public: Which API Strategy Is Best for Business?".ProgrammableWeb.Archivedfrom the original on 2016-07-18.Retrieved2 August2016.
  46. ^Weissbrot, Alison (7 July 2016)."Car Service APIs Are Everywhere, But What's In It For Partner Apps?".AdExchanger.Archivedfrom the original on 28 July 2020.Retrieved14 August2020.
  47. ^"Cloudflare API v4 Documentation".cloudflare.25 February 2020.Archivedfrom the original on 26 February 2020.Retrieved27 February2020.
  48. ^Liew, Zell (17 January 2018)."Car Service APIs Are Everywhere, But What's In It For Partner Apps".Smashing Magazine.Archivedfrom the original on 21 February 2020.Retrieved27 February2020.
  49. ^Shi, Lin; Zhong, Hao; Xie, Tao; Li, Mingshu (2011). "An Empirical Study on Evolution of API Documentation".Fundamental Approaches to Software Engineering.International Conference on Fundamental Approaches to Software Engineering. Lecture Notes in Computer Science. Vol. 6603. pp. 416–431.doi:10.1007/978-3-642-19811-3_29.ISBN978-3-642-19810-6.Retrieved22 July2016.
  50. ^"guava-libraries – Guava: Google Core Libraries for Java 1.6+".Google Project Hosting.2014-02-04. Archived fromthe originalon Mar 26, 2014.Retrieved2014-02-11.
  51. ^Oracle."How and When to Deprecate APIs".Java SE Documentation.Archivedfrom the original on 9 April 2016.Retrieved2 August2016.
  52. ^Takanashi, Dean (19 February 2020)."Akamai: Cybercriminals are attacking APIs at financial services firms".Venture Beat.Archivedfrom the original on 27 February 2020.Retrieved27 February2020.
  53. ^Dekel, Uri; Herbsleb, James D. (May 2009). "Improving API Documentation Usability with Knowledge Pushing".Institute for Software Research, School of Computer Science.CiteSeerX10.1.1.446.4214.
  54. ^Parnin, Chris; Treude, Cristoph (May 2011). "Measuring API documentation on the web".Web2SE '11: Proceedings of the 2nd International Workshop on Web 2.0 for Software Engineering.pp. 25–30.doi:10.1145/1984701.1984706.ISBN9781450305952.S2CID17751901.
  55. ^Maalej, Waleed; Robillard, Martin P. (April 2012)."Patterns of Knowledge in API Reference Documentation"(PDF).IEEE Transactions on Software Engineering.Archived(PDF)from the original on 22 August 2016.Retrieved22 July2016.
  56. ^"Structure of an OpenAPI Document".OpenAPI Documentation.Archived fromthe originalon 2022-11-06.Retrieved2022-11-06.
  57. ^"Annotations".Sun Microsystems.Archived fromthe originalon 2011-09-25.Retrieved2011-09-30..
  58. ^"Oracle and the End of Programming As We Know It".DrDobbs. 2012-05-01.Archivedfrom the original on 2012-05-09.Retrieved2012-05-09.
  59. ^"APIs Can't be Copyrighted Says Judge in Oracle Case".TGDaily. 2012-06-01.Archivedfrom the original on 2012-12-21.Retrieved2012-12-06.
  60. ^"Oracle America, Inc. vs. Google Inc."(PDF).Wired.2012-05-31.Archived(PDF)from the original on 2013-11-04.Retrieved2013-09-22.
  61. ^"Oracle Am., Inc. v. Google Inc., No. 13-1021, Fed. Cir. 2014".Archivedfrom the original on 2014-10-10.
  62. ^Rosenblatt, Seth (May 9, 2014)."Court sides with Oracle over Android in Java patent appeal".CNET.Archivedfrom the original on 2017-04-19.Retrieved2014-05-10.
  63. ^"Google beats Oracle – Android makes" fair use "of Java APIs".Ars Technica.2016-05-26.Archivedfrom the original on 2017-01-20.Retrieved2016-07-28.
  64. ^Decker, Susan (March 27, 2018)."Oracle Wins Revival of Billion-Dollar Case Against Google".Bloomberg Businessweek.Archivedfrom the original on January 9, 2022.RetrievedMarch 27,2018.
  65. ^Lee, Timothy (January 25, 2019)."Google asks Supreme Court to overrule disastrous ruling on API copyrights".Ars Technica.Archivedfrom the original on April 23, 2019.RetrievedFebruary 8,2019.
  66. ^vkimber (2020-09-28)."Google LLC v. Oracle America, Inc".LII / Legal Information Institute.Archivedfrom the original on 2021-04-15.Retrieved2021-03-06.
  67. ^"Supreme Court of the United States, No. 18–956, GOOGLE LLC, PETITIONER v. ORACLE AMERICA, INC"(PDF).April 5, 2021.Archived(PDF)from the original on April 5, 2021.RetrievedApril 25,2021.

Further reading

edit
edit