No more needless backends for Flutter apps

As of August 2024, none of the major Backend-as-a-service platforms for developing Flutter apps like Supabase, Cloudflare, Vercel, or Firebase support Dart cloud functions. Additionally, many Flutter packages can’t be utilized in Dart backends due to t…


This content originally appeared on DEV Community and was authored by L. Fernando De Pombo

As of August 2024, none of the major Backend-as-a-service platforms for developing Flutter apps like Supabase, Cloudflare, Vercel, or Firebase support Dart cloud functions. Additionally, many Flutter packages can't be utilized in Dart backends due to the absence of UI dependencies. As a result, developers using Flutter often have to rewrite model and controller logic to handle database operations a second time in Dart, Javascript or Python. This leads to duplicated effort and a slower development process which is the entire purpose of these services.

Introducing Backmesh

I got tired of having to write a cloud function in Javascript or Python for every Flutter project that called some private key API so I built Backmesh. Backmesh is a minimal SaaS for Flutter developers to safely call private key APIs, such as OpenAI in the example below, without writing any backend code in a server or cloud function.

// Auth Provider: Firebase
// App Type: Flutter Dart
// Private Key API: OpenAI

import 'package:firebase_auth/firebase_auth.dart';
import 'package:dart_openai/dart_openai.dart';


OpenAI.baseUrl =
  "https://edge.backmesh.com/proxyname"; // "https://api.openai.com" is the default one.
// set api secret key to jwt
OpenAI.apiKey = await FirebaseAuth.instance.currentUser.getIdToken();
await OpenAI.instance.chat(...)

There are many legitimate use cases for backends, but the primary use case for many Flutter apps that require a backend is just being able to securely call an external, private key API. Backmesh allows Flutter apps, or any client app written in any language, to do this without a backend by storing the private API key and providing a JWT protected proxy with user-scoped access using the app's authentication provider.

Security Considerations

Let's quickly go over authorization and the two different types of authentication:

Authentication verifies someone is who they say they are.

  • User authentication means we can identify which user is making a request and whether the user in question is valid.

  • Client app authentication means we can verify that the request is originating from a valid and untampered app client.

Authorization verifies that someone has access to something specific and grants access if applicable. Authorization requires authentication to happen first.

For example, Firebase provides user authentication, but only properly configured Firestore security rules provide authorization to your database. Furthermore, only adding Firebase AppCheck can provide client app authentication. More about that here.

In the case of a public API proxy, Backmesh performs user authentication to ensure that requests to the proxy securing your private key API come from one of your users. This does not provide authorization about which specific users are allowed to make which requests to the proxy, or how many requests a specific user can make. However, with Backmesh you can set rate limits across all your users to reasonably protect your API resources e.g. no user should be calling a given API more than X times per hour. It is possible to integrate with Stripe to be able to set authorization access rules for users based on their payment plan. If you are interested in this email hello at backmesh dot com.


This content originally appeared on DEV Community and was authored by L. Fernando De Pombo


Print Share Comment Cite Upload Translate Updates
APA

L. Fernando De Pombo | Sciencx (2024-08-14T19:22:23+00:00) No more needless backends for Flutter apps. Retrieved from https://www.scien.cx/2024/08/14/no-more-needless-backends-for-flutter-apps/

MLA
" » No more needless backends for Flutter apps." L. Fernando De Pombo | Sciencx - Wednesday August 14, 2024, https://www.scien.cx/2024/08/14/no-more-needless-backends-for-flutter-apps/
HARVARD
L. Fernando De Pombo | Sciencx Wednesday August 14, 2024 » No more needless backends for Flutter apps., viewed ,<https://www.scien.cx/2024/08/14/no-more-needless-backends-for-flutter-apps/>
VANCOUVER
L. Fernando De Pombo | Sciencx - » No more needless backends for Flutter apps. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/08/14/no-more-needless-backends-for-flutter-apps/
CHICAGO
" » No more needless backends for Flutter apps." L. Fernando De Pombo | Sciencx - Accessed . https://www.scien.cx/2024/08/14/no-more-needless-backends-for-flutter-apps/
IEEE
" » No more needless backends for Flutter apps." L. Fernando De Pombo | Sciencx [Online]. Available: https://www.scien.cx/2024/08/14/no-more-needless-backends-for-flutter-apps/. [Accessed: ]
rf:citation
» No more needless backends for Flutter apps | L. Fernando De Pombo | Sciencx | https://www.scien.cx/2024/08/14/no-more-needless-backends-for-flutter-apps/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.