Skip to main content
30
results
Andrew Fletcher
For an introduction into setting up RESTful hal+json refer to the set-up documentation. GET a node To get the content of the specific node you require the node.nid.  The key information required in the GET query: URL - your-site.com/node/<nid>?_format=hal_json; Content-Type - application/hal+json; Nod.nid - noted in the URL string as <nid>. Example using a node.nid of one (1).  So the nid in the URL is <nid> =...
Andrew Fletcher
For an introduction into setting up RESTful hal+json refer to the set-up...
Andrew Fletcher
For an introduction into setting up RESTful hal+json refer to the set-up...
Andrew Fletcher
To POST an image is similar to the other posts mentioned on this site....
Andrew Fletcher
For an introduction to setting up RESTful hal+json refer to the set-up...
Andrew Fletcher
The user API, was originally created under the General Documenation area (see Query - user).  I'm creating a new user API document under the API documentation area. Calling a query To call a user query the details are required: User uid; Authentication credentials The query string is: {domain}/user/{uid}?_format=hal_json See the notes on set up, for the staging and production URLs.  Using the current staging URL in the set up screen, as example of...
Andrew Fletcher
The development version of the app database is held on the staging site....
Andrew Fletcher
The user parameters provides details about a specific user based...
Andrew Fletcher
I had an instance where I needed to move content from a plist to the server...
Andrew Fletcher
How to apply a gradient tint over a background image? Set the background...
Andrew Fletcher
Working on formatting the date in Xcode, and you come across the situation where you need to check or test the date format.  NSDateFormatter is a great site to check your date format string.  I wanted to transform the 2019-08-15 10:34:49+1000 to Aug 15, 12:34 AM. let dateFormatter = DateFormatter() dateFormatter.dateFormat = "MMM d, h:mm a" let dateFormatted = dateFormatter.string(from: run.timestamp!)dateFormatted prints Aug 15, 12:34...
Andrew Fletcher
Adding a floating decimal point for n number of places is quite easy to achieve....
Andrew Fletcher
During the process of building the app, there are warnings about the code....
Andrew Fletcher
https://github.com/kylebrowning/waterwheel.swift After a short amount searching...
Andrew Fletcher
If you have this error, the core issue is the dyld issue. dyld dyld is a...