Development problem sorting-continuous maintenance

Introduction

This article is used to sort out a series of problems and solutions in the process of software development and learning. Will continue to update.

20220623-What is api, what is sdk

The full English name of api is application program interface, the full English name of application program interface
sdk is software development kit, software development kit

api

  • api is the interface
  • The api is called through the interface address (url)
  • The api is called by initiating a network request
  • API passes network request parameters through query param, json, etc.

sdk

  • sdk is a toolkit
  • Because it is a package, import the corresponding dependencies in different language environments
  • The sdk is called by the function in the package
  • The sdk passes parameters through function parameters
  • SDK can be understood as a series of APIs packaged to simplify software development

Guess you like

Origin blog.csdn.net/q863672107/article/details/125436361