Share .JSON file accesible via API key in Wordpress site - json

Currently Im building a Wordpress membership site where I would like to offer members data compiled into a .JSON file. An example is: https://mayermultiple.info/current.json
How do I encrypt the json file so only members can acces it e.g. in there own coding environment?

Related

FrontEnd that needs help to host a DB (.json)

Is there a place where i can host my simple .json file but to also
do CRUD on the API?
Just like firestore firebase, but REST version of it.
Really need a place where i can just host it and create my small project.

How to add JSON API file to WordPress?

I've a JSON API file need to implement to a WordPress site, How could I do that?
I'm trying some plugins but not working

Ionic 5: How to write to local JSON files?

I'm developing an Ionic-Angular mobile application that involves tracking user progress. While I'm familiar with how to read from locally defined JSON files (and render that data), I've been unable to find any solutions online to write/append to local JSON files.
Until I'm able to utilize something like Google Firebase, I'd like to be able to just store this data by writing to local JSON.
Is there any way I can do this or is a database the only solution?
I'm assuming this is a web application. There is no way you can access the file system of the user to persist the data.
Other options
Index DB (save the information locally to the user at the browser level). User can go to the mobile device settings and clear it if required.
Use a mock api if this is only during the local development purpose (Use json-server and watch the database json file. You can update the database json file and it will reflect)
If you are building a hybrid application using ionic, then use one of the cordova plugins available here.
Use an actual backend service which persists it in the database.

Upload video file (mp4,mpeg) in access database using vb

is it possible to upload video file using access database and vb? i am beginner in programming and our project is all about uploading files. Can anyone help me? I used access database because that is the requirement.
Would the video files be uploaded to a local network server or to a website?
If you are uploading the files to to a local server, you could have access:
1 Open up a file dialog to browse to the file to be uploaded.
2 Copy that file to a specific directory on your network, making sure the filename is unique or possibly creating a file name based on the original file name and date of upload. ie filename_datetime.
See the following answer for steps 1 and 2: storing large numbers of images in ms access
3 Maintain information in a table with fields for: filename, file location, user, upload date, friendly file name and possibly links to other tables such as clientID etc.
If you are uploading the files to a web server, you could do this in access, but you'd probably be better off managing the uploading and listing of files in a website. You could build it yourself or look into what you already have, as many content management systems will have this kind of file management built in.

How do I host JSON files on my website?

One of my iPhone apps uses JSON data to populate it's database. However, I'd like to make that process automatic by hosting the JSON file online. How do I do this?
example of the content I want to host:
[{"Name":"John","Value":22,"Colour":"brown","City":"Auckland"}
Well you just need a hosting, upload your file and point your app to that file thats it. Search for any free hosting on google, there are plenty of them.
You can store them as files on your HTTP server or generate them from database with any of server-side languages.