主题:laravel、api、thirdpartyintegration、web 开发 php laraveltips apisinlaravel
将第三方 api 集成到 laravel 中可以通过利用外部服务(例如支付、数据检索等)来增强您的应用程序。以下是有效集成第三方 api 的分步指南和示例。
先决条件:
- 一个可以运行的 laravel 安装。
- 第三方 api(我们将使用天气 api 作为示例)。
第 1 步:设置您的 api 密钥和环境变量
首先,注册第三方api并获取您的api密钥。在 laravel 的 .env 文件中存储 api 密钥等敏感信息。
- 获取 api 密钥:注册第三方 api(例如 openweathermap)并检索您的 api 密钥。
- 添加到.env:
weather_api_key=your_api_key_here weather_api_url=https://api.openweathermap.org/data/2.5/weather登录后复制
步骤 2:安装 guzzle(http 客户端)
laravel 使用 guzzle(一个 php http 客户端)来发出 http 请求。如果您的 laravel 项目中尚未安装 guzzle,请安装它:
composer require guzzlehttp/guzzle登录后复制
步骤 3:为 api 请求创建服务类
为了保持代码井井有条,请创建一个服务类来处理 api 集成逻辑。
- 创建一个新的服务类:
运行以下命令来创建服务类:
php artisan make:service weatherservice登录后复制
- 实现服务类:
在 app/services/weatherservice.php 中,编写一个函数来从天气 api 中获取数据。
<?php namespace appservices; use guzzlehttpclient; class weatherservice { protected $client; public function __construct(client $client) { $this->client = $client; } public function getweather($city) { $url = env('weather_api_url'); $apikey = env('weather_api_key'); $response = $this->client->get($url, [ 'query' => [ 'q' => $city, 'appid' => $apikey, 'units' => 'metric' // or 'imperial' for fahrenheit ] ]); return json_decode($response->getbody(), true); } }登录后复制
步骤4:将服务绑定到服务提供者
要使 weatherservice 在您的应用程序中可访问,请将其绑定到服务提供者中。
- 创建新的服务提供商:
php artisan make:provider apiserviceprovider登录后复制
- 在 apiserviceprovider.php 中注册服务:
在 app/providers/apiserviceprovider.php 中,添加:
<?php namespace appproviders; use illuminatesupportserviceprovider; use guzzlehttpclient; use appservicesweatherservice; class apiserviceprovider extends serviceprovider { public function register() { $this->app->singleton(weatherservice::class, function () { return new weatherservice(new client()); }); } public function boot() { // } }登录后复制
- 注册服务提供商:
在config/app.php中,将appprovidersapiserviceprovider::class添加到providers数组中。
第5步:创建api交互的控制器
要处理 api 请求和响应,请创建一个控制器来与 weatherservice 交互。
- 生成控制器:
php artisan make:controller weathercontroller登录后复制
- 使用控制器中的服务:
在 app/http/controllers/weathercontroller.php 中,添加:
<?php namespace apphttpcontrollers; use appservicesweatherservice; use illuminatehttp equest; class weathercontroller extends controller { protected $weatherservice; public function __construct(weatherservice $weatherservice) { $this->weatherservice = $weatherservice; } public function show($city) { $weatherdata = $this->weatherservice->getweather($city); return view('weather.show', ['weather' => $weatherdata]); } }登录后复制
第 6 步:定义路线
添加路由以根据城市名称发出 api 请求。
- 更新routes/web.php:
use apphttpcontrollersweathercontroller; route::get('/weather/{city}', [weathercontroller::class, 'show']);登录后复制
第7步:创建一个视图来显示天气数据
创建一个视图来显示从 api 获取的天气信息。
- 创建视图:
在 resources/views/weather/show.blade.php 中,添加:
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>weather information</title> </head> <body>登录后复制weather in {{ $weather['name'] }}
temperature: {{ $weather['main']['temp'] }}°c
condition: {{ $weather['weather'][0]['description'] }}
humidity: {{ $weather['main']['humidity'] }}%
</body> </html>
第 8 步:测试集成
启动 laravel 开发服务器:
php artisan serve登录后复制
访问 http://localhost:8000/weather/{city},将 {city} 替换为您要检查的城市名称(例如伦敦)。
概括
您现在已经按照以下步骤将第三方 api 集成到 laravel 应用程序中:
- 在环境文件中设置 api 密钥。
- 安装并配置 http 客户端。
- 创建一个服务来处理 api 请求。
- 将服务绑定到服务提供者中。
- 创建一个控制器来使用该服务。
- 定义路线。
- 构建一个视图来显示数据。
- 测试您的集成。
此设置遵循 laravel 最佳实践,使您的代码保持模块化和安全。这种方法可以扩展到您想要集成的任何第三方 api!
与我联系:@ linkedin 并查看我的作品集。
请给我的 github 项目一颗星 ⭐️
以上就是在 Laravel 应用程序中集成第三方 API 的分步指南的详细内容,更多请关注慧达安全导航其它相关文章!
免责 声明
1、本网站名称:慧达安全导航
2、本站永久网址:https//www.huida178.com/
3、本站所有资源来源于网友投稿和高价购买,所有资源仅对编程人员及源代码爱好者开放下载做参考和研究及学习,本站不提供任何技术服务!
4、本站所有资源的属示图片和信息不代表本站的立场!本站只是储蓄平台及搬运
5、下载者禁止在服务器和虚拟机下进行搭建运营,本站所有资源不支持联网运行!只允许调试,参考和研究!!!!
6、未经原版权作者许可禁止用于任何商业环境,任何人不得擅作它用,下载者不得用于违反国家法律,否则发生的一切法律后果自行承担!
7、为尊重作者版权,请在下载24小时内删除!请购买原版授权作品,支持你喜欢的作者,谢谢!
8.若资源侵犯了您的合法权益,请持 您的版权证书和相关原作品信息来信通知我们!QQ:1247526623我们会及时删除,给您带来的不便,我们深表歉意!
9、如下载链接失效、广告或者压缩包问题请联系站长处理
10、如果你也有好源码或者教程,可以发布到网站,分享有金币奖励和额外收入!
11、本站资源售价只是赞助,收取费用仅维持本站的日常运营所需
12、因源码具有可复制性,一经赞助,不得以任何形式退款。
13、本文内容由网友自发贡献和站长收集,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系1247526623@qq.com
转载请注明出处: 慧达安全导航 » 在 Laravel 应用程序中集成第三方 API 的分步指南
发表评论 取消回复