Foshes Universe
<- Back to blogs

Azure Function App — CORS Issue

Azure Function App — CORS Issue

I wanted to test the API locally and noticed that I was getting a CORS issue. Turns out, I didn’t configure the Azure function app correctly. For anybody curious, this was a very helpful article: https://www.c-sharpcorner.com/article/handling-cors-in-azure-function/ . Instead of allowing a specific address, I just allowed ‘*’.

Now, if you’re interested in using the api, you can. Here’s a simple HTML code snippet:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>herp flerp</title>
</head>
<body>
<pre>
<code id="content"></code>
</pre>
</body>
<script>
fetch("https://api.projectfoshes.com/items").then(r => {
r.json().then(content => {
document.getElementById("content").innerText = JSON.stringify(content, null, 4)
})
})
</script>
</html>

I’m sitting in class right now and feel like I have nothing to do. I fixed some typing issues inside of the MongoDB item documents. I think that I should make some functions for testing item updates because I am not used to the Mongo JS library at all.

I’m going to have to go through some logic and prototype some architecture to figure out how I want to do quantity updates for items. One of my old friends (he probably doesn’t remember me, so I’m really hesitant to say friend LOL) posted this on his Twitter https://twitter.com/Axt_an/status/1657696775082262528?s=20 . I think this is a really solid foundation and I am going to attempt to accomplish something like this, SPECIFICALLY for global data (item quantities). Trades and transactions can probably be POSTed per server.

Big things on the way! Probably going to get back to game development tonight!

Written by William Hamilton

2023-09-01