Firebase Dynamic Links
Firebase Dynamic Links are links that work the way you want, on multiple platforms, and whether or not your app is already installed.
Dynamic Links সাহায্যে, আপনার ব্যবহারকারীরা যে প্ল্যাটফর্মে আপনার লিঙ্কটি খুলবে তার জন্য সেরা উপলব্ধ অভিজ্ঞতা পান। যদি কোনও ব্যবহারকারী iOS বা Android-এ একটি Dynamic Link খোলে, তাহলে সেগুলি সরাসরি আপনার নেটিভ অ্যাপে লিঙ্ক করা সামগ্রীতে নিয়ে যেতে পারে। যদি কোনো ব্যবহারকারী একটি ডেস্কটপ ব্রাউজারে একই Dynamic Link খোলে, তাহলে তাদের আপনার ওয়েবসাইটের সমতুল্য সামগ্রীতে নিয়ে যাওয়া যেতে পারে।
এছাড়াও, Dynamic Links অ্যাপ ইনস্টল জুড়ে কাজ করে: যদি কোনও ব্যবহারকারী iOS বা Android এ একটি Dynamic Link খোলে এবং আপনার অ্যাপ ইনস্টল না থাকে, তাহলে ব্যবহারকারীকে এটি ইনস্টল করার জন্য অনুরোধ করা যেতে পারে; তারপর, ইনস্টলেশনের পরে, আপনার অ্যাপ শুরু হয় এবং লিঙ্কটি অ্যাক্সেস করতে পারে।
এটা কিভাবে কাজ করে?
আপনি Firebase কনসোল ব্যবহার করে, একটি REST API, iOS বা Android Builder API ব্যবহার করে বা আপনার অ্যাপের নির্দিষ্ট একটি ডোমেনে Dynamic Link প্যারামিটার যোগ করে একটি ইউআরএল তৈরি করে একটি Dynamic Link তৈরি করেন। এই প্যারামিটারগুলি ব্যবহারকারীর প্ল্যাটফর্ম এবং আপনার অ্যাপ ইনস্টল করা আছে কিনা তার উপর নির্ভর করে আপনি যে লিঙ্কগুলি খুলতে চান তা নির্দিষ্ট করে৷
When a user opens one of your Dynamic Links , if your app isn't yet installed, the user is sent to the Play Store or App Store to install your app (unless you specify otherwise), and your app opens. You can then retrieve the link that was passed to your app and handle the deep link as appropriate for your app.
কাস্টম লিঙ্ক ডোমেন
You can create Dynamic Links using your own domain name :
https://example.com/summer-sale https://example.com/links/promos/summer-sale https://links.example.com/summer-sale https://ex.amp.le/summer-sale
Or, if you don't have a domain for your app, you can use a no-cost custom page.link subdomain:
https://example.page.link/summer-sale
Create your subdomain at no charge in the Firebase console.
All Dynamic Links features, including analytics, post-install attributions, and SDK integrations, work with both custom page.link domains and your own domain.
বাস্তবায়নের পথ
Set up Firebase and the Dynamic Links SDK | Enable Firebase Dynamic Links for your Firebase project in the Firebase console. Then, include the Dynamic Links SDK in your app. | |
Dynamic Links তৈরি করুন | You can create Dynamic Links programmatically or by using the Firebase console. | |
Handle Dynamic Links in your app | যখন আপনার অ্যাপ খোলে, Dynamic Links SDK ব্যবহার করুন এটিতে একটি Dynamic Link পাঠানো হয়েছে কিনা। If so, get the deep link from the Dynamic Link data and handle the deep link as necessary. | |
বিশ্লেষণ তথ্য দেখুন | Track the performance of your Dynamic Links in the Firebase console. |
পরবর্তী পদক্ষেপ
- Learn about some of Firebase Dynamic Links ' most common use cases and how to implement them.
- Learn how to create Dynamic Links and then receive them in your iOS , Android , Flutter , Unity , and C++ apps.
- Use your own custom domain for Dynamic Links .
- Understand your Dynamic Links 's performance with two analytics tools.