• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

http

  1. Neon-Gr33n

    SOLVED [GMS2.3+ GameJolt API] How can I fetch the avatar image from the returned JSON?

    Hello there! first time posting on the forums, I'm Neon-Gr33n. I've been working on an implementation of the GameJolt API into my game "SWAPPED MYTH" it's all been going fairly smoothly thus far, up until I had to add in the Avatar display, that is. It's been somewhat of a headache trying to...
  2. A

    How to pull data using http?

    Hello, Im currently having some problems using http_get() / http_get_file() inorder to read data from an external text file through a link. What im looking to do is relatively simple, I want to connect to a HTTPS server, retrieve a .txt file, and print it's content in GameMaker. If anyone has...
  3. If Programable_Matter

    HTML5 Program that retrieves JSON values from server

    I have been able to create a program that retrieves json values from an online server on a windows based game maker program. Is it possible to create an HTML5 game maker program that gets json key:values from server. If this is possible any coding suggestions would be greatly appreciated.
  4. S

    HTML5 HTTP in HTML5 issues with latest release

    I am having issues with HTTP requests in the latest release. I have an app working fine making http_requests. But the latest version there is no response coming through from to the HTTP - Async. I even created a brand new project with a simple call to an API in http_request and the same issue...
  5. RyanC

    GML Question about http_request & Async Load

    Hi All, Does anyone know what is the point of assigning this function to a variable called "request": request = http_request("http:225.0.0.97:3000/products", "POST", map, data); It says to do this in the manual so it can be checked against incoming requests, and we can match it with...
  6. VoxPrincipalis

    Android HTTP Post Doesn't Send a Payload

    When sending an http post request via android, no payload seems to be included in the body for an http website. For an https website, everything is sent and works as it should. Yes, I made sure to include these in my androidManifest.xml <application android:usesCleartextTraffic="true">...
  7. VoxPrincipalis

    GameMaker Change HTTP Operation Timeout

    Hello, Upon working on a program that will test products for my work (I'm using GameMaker Studio 2 because I'm extremely well versed in the program and can bend it to my will to perform any task, even outside game development), and while using http post and get, I'm getting an error due to the...
  8. RizbIT

    Getting the actual full path to a donwloaded file

    Im using http_get_file to download a video file: file = http_get_file(global.soundbaseurl+"backgrounds/"+string_replace_all(path," ","%20"),"backgrounds/"+path); Setting save as destination to "backgrounds/"+path The file downloads and then in the HTTP Async event I use var file_returned =...
  9. F

    http request with json

    Hello! I need help. I have an API in the local host but I'm having trouble to pass a JSON in the get to retrieve some data from the database. I want to pass the below JSON in a GET request in GM2. { "LOGIN":"xxx"; "PASSWORD":"XXX" } Can I pass a JSON as parameters to a GET request with the...
  10. FoxyOfJungle

    Question - General Marketplace API

    Is there a YoYo Games Marketplace API? Where can I, for example, send an HTTP request to get the list of emails that bought a paid asset? I would need this to be returned in JSON format... I didn't find it, I would like to have this added to the Marketplace 2.0.
  11. AetherBones

    Easy Online Highscores

    Easy Online Highscores in GameMaker Studio using the gmscoreboard.com Service GM version: GMStudio 2.3.2 Target platform: all Download: https://marketplace.yoyogames.com/assets/10306/gm-scoreboard-scripts Links: gmscoreboard.com Latest change: 2021-09-22 Level: Intermediate (some GML knowledge)...
  12. G

    HTTP Request Issue

    Hello, I have written an API for submitting highscores to a database using Node.js and I have deployed it to the Google App Engine. The API recieves commands through HTTP requests and acts accordingly based on the information contained in the request. When testing the API locally on my machine...
  13. SgtMoose151996

    GameMaker In-game survey?

    Background: Currently, I am developing a 2D pixel art bullet-hell boss rush inspired by R-Type, Bloodborne, and StarFox 64 (link to demo here) I have done localized focus group testing and am planning a strategy for broader market research. One consideration I have is a short in-game survey...
  14. K

    Get random words from remote URL

    Hey guys, I am building a puzzle game and i want to fetch words or word from API url (https://developer.wordnik.com/docs#!/words/getRandomWord) and show that word in the gameplay, is there anyone who has an experience with it?
  15. andev

    SOLVED [GMSTUDIO] http_get not working - No asynchronous HTTP event triggered at all.

    I put show_debug_message("It worked!") in the http async event but it never showed up in console. I saw a post that said you needed to make sure the http_get wasn't in a create event but it wasn't, it was in a step event. I googled forever and couldn't find anything, but then I discovered an old...
  16. Acid Reflvx

    GML How do I send files into an online database????? (HELP!)

    When I began my game, I wanted to put it on Steam, and it would use the Steam workshop. I don't want to use Steam now though and I want to make my own online playing system like how Geometry Dash did. I have a domain I can use as a database. The domain is allowed one page. So all of that comes...
  17. P

    SOLVED HTTP functions fail with HTTP Status 0 on Linux builds, but not Windows when requesting HTTPS

    Hello everyone! I am creating a program which communicates to a server that I set up with an SSL certificate from the CA Namecheap. I am using the function call http_get("https://frey.network/phame/") to check if the website is reachable. On Windows 10 this returns the ds_map values of: status...
  18. angelwire

    http_get_file() begins download but end with -1 status

    Hello, I'm trying to download a file using http_get_file() but it ends with an error. I've spent a while checking the manual but I can't seem to find out what the problem is. The http_status is fine so I can't figure out what the problem is. I thought it might be a bug with 2.3 but the same...
  19. G

    Upload a game file to a web server

    Hello! I'm making a project where the player has to make an artwork while playing the game. My idea is that, when the game ends, it takes a screenshot of the player's masterpiece, send to a server so that It can be posted on a website, like a gallery. The screenshot I know can be saved using the...
  20. Posho

    GameMaker [SOLVED] HTTP GET/POST Help for GraphQL

    Hello, I am trying to get access to an API using HTTP functions. Normally you would make queries using JSON files but apparently GM:S forcefully uses ds_maps, which is a tad different. I am also having trouble sending the Auth Token, which from my understanding is done through the Header of a...
Top