我想通过使用其Rest API在我的应用程序中使用Uber,当我从Postman发出同样的错误时,我每次都会得到相同的错误
{
  "message": "No authentication provided.",
  "code": "unauthorized"
}
在优步开发者网站上输入与给定样本相同的请求后.你也可以在这里检查:
我在这附上我的要求的照片.
我需要用90%的超级功能制作我自己的应用程序我可以使用uber api构建自己的后端服务吗?
我的意思是创建我自己的服务器端并使用超级算法,驱动程序和客户注册我而不是优步
错误:模块“AppModule”导入的意外值“HttpClient”。请添加@NgModule 注释。
我不明白为什么我会收到这个错误。
我都试过了: import { HttpClient } from '@angular/common/http'; 并从 '@angular/common/http' 导入 { HttpClientModule };
这是完整的错误:
Error: Unexpected value 'HttpClient' imported by the module 'AppModule'. Please add a @NgModule annotation.
at syntaxError (http://localhost:8100/build/vendor.js:116430:34)
at http://localhost:8100/build/vendor.js:131184:44
at Array.forEach (<anonymous>)
at CompileMetadataResolver.getNgModuleMetadata (http://localhost:8100/build/vendor.js:131159:49)
at JitCompiler._loadModules (http://localhost:8100/build/vendor.js:150357:87)
at JitCompiler._compileModuleAndComponents (http://localhost:8100/build/vendor.js:150318:36)
at JitCompiler.compileModuleAsync (http://localhost:8100/build/vendor.js:150212:37)
at CompilerImpl.compileModuleAsync (http://localhost:8100/build/vendor.js:115251:49)
at PlatformRef.bootstrapModule (http://localhost:8100/build/vendor.js:5952:25)
at Object.491 (http://localhost:8100/build/main.js:2405:109)
Ionic Framework 3.9.2 Ionic Native:^2.9.0 Ionic App Scripts:3.2.4 Angular Core:5.2.11 Angular Compiler CLI:5.2.11 Node:8.10.0 OS:Windows 10
我正在使用优步API查询某些位置,并确定每个位置可用的优步产品.
我一直使用Python一次查询10-15个位置,到目前为止没有发生错误.
但是,我想知道每个固定时间间隔(秒,分钟,小时,天,周等)的查询数量是否有限制.
到目前为止,我正在打电话GET /v1/estimates/price和GET v1/estimates/time.
有定义的限制吗?
谢谢.