-
Currently you need to manually require the token store class and assign it to `FmRest.token_store=` as the Ruby class object.
E.g.:
```ruby
require "fmrest"
require "fmrest/token_store/redis"
…
pilaf updated
4 years ago
-
`const Fmrest = require('fmrest');
const filemaker = new Fmrest({
user: "user",
password: "pass",
host: "host",
database: "db",
auth: "fmid", // basic or fmid
// layout: …
rubab updated
2 years ago
-
Currently calling `.destroy` on a record will return a hash of parsed JSON (Spyke's default behavior), but it should return a boolean with success status instead.
pilaf updated
5 years ago
-
Edit:
I guess after analyzing the fmrest.js in /lib there doesn't seem to be any functionality for automatic refreshing of the access token. Was this in a previous version?
I have an app that set…
-
I am having trouble updating a records.
For almost all record numbers this code cooperates but occasionally it yields a "Filemaker Error Code 101 - Record Is Missing":
```
server = fmrest.Server…
-
Hi David,
Your examples shows FileMaker Server Data API.
Can I also use python-fmrest to directly access a local Filemaker database(.fmp12) without Server Connection?
I want to extract some field…
-
I want to try this plugin in recent version of HAPI with the official tour. But I can't make it run at all.
This is my server.js file:
~~~
'use strict';
const Hapi = require('hapi');
cons…
jsg10 updated
6 years ago
-
I'm trying this out for the first time and have setup a simple php file to get the $token and echo that back out. I'm getting a 500 error in the Apache error_log, but it feels like something is happen…
-
I upgraded FMS to version 20.2.1.19 running on Windows Server 2016 yesterday. Since then, I'm receiving status 2 (Failed Permanently) for every message in sent to a channel that has "Process immediate…
-
Current examples only show FMSv17 style of executing scripts.
TODO: Update examples.