Short URL PHP Generate Firebase,In this example we will discuss how to make a URL short from a long URL using firebase, In this example, I just posted a PHP function, I made a shorten_URL() PHP function, and this function will return a short URL from the firebase server. First, you need to set up this function properly in your application, therefor first you must require your firebase account API key.
For Firebase Dynamic Links Shorten URL PHP, We must require a firebase API key, open your firebase google account and generate your API key, for getting a firebase API key you need to register your domain name and domina page and other additional details. after entering all the details you will get the API key from there.
To generate a short URL from a firebase account paste your API key in this function. Then after entering your prefix your domain name is in the function. then after putting your android info package name and ios bundled id in the function.
To get a Short URL from this PHP function using firebase, You are required to pass an argument in this function, The argument is a LONG URL. pass long URL in the function, This function will return a SHORT URL from the firebase server.
function shorten_URL($longUrl) { return Curl::to('https://firebasedynamiclinks.googleapis.com/v1/shortLinks?key={FIREBASE API KEY}') ->withHeader('Content-Type: application/json') ->withData([ 'dynamicLinkInfo' => [ 'domainUriPrefix' => 'https://example.page.link', 'link' => $longUrl, 'androidInfo' => [ 'androidPackageName' => 'com.example' ], 'iosInfo' => [ 'iosBundleId' => 'com.example' ] ], 'suffix' => [ "option" => "SHORT" ], ]) ->asJson(true) ->post(); }
Get IP PHP Function Example - ip_info()
Slug PHP Function Example - slugify($string)
How To Check Given URL Is Valid Or Not PHP Function Example
We always thanks to you for reading our blogs.

Dharmesh Chauhan
(Swapinfoway Founder)Hello Sir, We are brothers origin from Gujarat India, Fullstack developers working together since 2016. We have lots of skills in web development in different technologies here I mention PHP, Laravel, Javascript, Vuejs, Ajax, API, Payment Gateway Integration, Database, HTML5, CSS3, and Server Administration. So you need our service Please Contact Us

Haresh Chauhan
(Co-Founder)We Are Also Recommending You :
- How To Get Last Record From The Laravel Collection Using last() Collection Method Possible all Example
- Join Query Same Table In Laravel
- How To Get Current Request Method Post Patch Get In Laravel - PHP
- Laravel broadcasting with redis and socket.io
- How To Use Where Clause With Two Fields Of The Same Table Examples
- How To Add Google reCAPTCHA v2 In HTML Form Based PHP/Laravel Website
- How to send mail example in Laravel 6
- Laravel 6 call function undefined str_slug() - fix
- Laravel Livewire CRUD Using Bootstrap Modal Full Example Guideline And Demo Source Code
- Laravel 9 Create Custom Auth Guard Multi Login Authentication System Tutorial