Integration and Security: Safely Integrate Apps to Third Party Data

New to app development? In this blog, Thunkable guides app developers through the process of using data from an external API safely and securely.
Written by
The Thunkable Team
Published on
March 29, 2022

On numerous occasions, we are faced with questions from users relating to how they can use data from an external API without any issues when using devices but not on web (on live preview or by publishing as a web app).

In this blog post, we will try to explain some of the causes of this behavior. Let’s start from the top!

data integration automation illustration no code app builder app creator thunkable

Understanding the Basics about Origins and Security

What happens when you type a URL into your browser? A request will be sent to the server pointed at by that URL, and the browser will download and run any arbitrary code that happens to be hosted at that source. This is potentially dangerous, as we cannot know the nature of that code we are freely running. This is the main reason why browsers tend to implement higher security measures than other artifacts (such as apps or even servers), the most common being that browser processes run in a "sandbox" or isolated environment from the rest of your computer.

Additionally, browser processes are also shielded from the outside by what is normally called the "Same-Origin Policy". From Mozilla’s developer website you can see that:

The same-origin policy is a critical security mechanism that restricts how a document or script loaded from one origin can interact with a resource from another origin. It helps isolate potentially malicious documents, reducing possible attack vectors.

To simplify, an "Origin" is considered to be the same if it comes from the exact same website, but it also has to use the same protocol and port. As an example we can say that these two Thunkable URLs share the same origin:

  • http://thunkable.com/project1
  • http://thunkable.com/project1

However, the origin is different to

  • https://thunkable.com/project1

The only reason being that HTTPS ("s" for "secure") is a different protocol from HTTP (insecure). This would also make, for instance, thunkable.com and youtube.com two different origins.

But, on today’s web, loading resources from multiple origins occurs very often. For instance, if you have ever embedded a YouTube video on your website, you are now requesting resources from different origins. This generally works, so how is this possible?

CORS, which stands for “Cross-Origin Resource Sharing” is a mechanism that allows servers to decide which “origins” are allowed to load resources or not. CORS is implemented on servers, and servers can be configured in different ways, from allowing everyone on the internet to use the resources to allowing no one to do so.

So, browsers restrict the way we can load resources, but with CORS, we can somehow work around that. You may be wondering, then, "Why is my Thunkable App working fine on iOS and Android but not on web?" We’ll talk about that next.

Why Your App Might Not Work on the Web

At this stage, you have an understanding of why some resources might be blocked by the browser, but we also want to clarify that the "Same Origin Policy" we discussed earlier does not apply to devices or servers, only to web browsers. That's the first possible thing to look into if you are having these issues. Is the server you are querying stopping the browser from loading the resources needed? By default, the answer is yes, unless the server owners have configured it to behave differently.

We have some documentation already available if you want to know a bit more.

Your next thought might now be, "You also mentioned earlier that CORS can get around that pesky same-origin imposition, so why is this still not working?"

Well, CORS is a mechanism that the owner of the data (the one that owns the server) can decide whether to utilize. CORS can be opened to everything on the internet or limited to a particular internet domain or set of IP addresses. As such, it is not possible for anyone, as a consumer of data, to make those changes. The owner of the server has that privilege.

This is not the only scenario though, and the same-origin policy is not always at blame for a smaller number of cases. For instance, because we use secure HTTP to host Thunkable, our mobile web apps cannot use HTTP (not secure) calls to talk to an API. On devices, these calls are allowed.

What can Thunkable Do about Your App Not Working on the Web?

In most cases, nothing. If the API you are trying to use is not secure, you can only access it through devices. As we do not own the servers that you are trying to read data from, we cannot change their CORS settings either.

That being said...there are some workarounds available.

What Can Thunkable Creators Do to Get Their Apps Working on the Web?

There are a number of tips and tricks found on the web, some of which are not reasonably recommendable because they can cause big security holes; we do not recommend anyone to use them. As such, we are not even going to talk about them.

In some cases (and please note this is a much more advanced topic), we can recommend the use of a proxy, or an intermediary between yourself and the data you are trying to load. The gist is that, as you may recall, servers alongside devices do not abide by the same-origin policy, so a proxy will make a call to the data you want to load and then serve that same data to your app. A proxy is a server process, so you can set up CORS so that access to the data is allowed. You would basically be running a little server that makes calls to APIs for you, and it is configured so that you can access it from your own app. Instead of calling the API directly, you call your proxy, and, in turn, the proxy calls and then serves the received data.

This can be complicated, though, especially if you are not an app developer. How do you even run a server on what… and where… and how? But don’t fret, there are simple services for this. Here’s an example of such a proxy, hosted for free with a service called Vercel.com. (Note that we offer this as a template or example of how this could work, and there are certain things that you should modify for a production system.)

Final Thoughts

When it comes time to pull in data for your app, make sure you thoroughly scope out all requirements. Pay attention to the Origin and server security. This will set you up to make the data passing process much smoother. And if you do get stuck, you can always try some of the workarounds provided, or you can check in with our talented and dynamic Community for help.

Monthly Newsletter
The latest Thunkable releases, tips, Creator stories, and no code news, delivered every month!
Read about our privacy policy.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Written by
The Thunkable Team

Related Resources

What Will You Create?

Ready to take your first steps towards developing that amazing idea? Get started on your app for free.

Start for Free
Personalized Onboarding