45
results
Andrew Fletcher
•
For an introduction into setting up RESTful hal+json refer to the set-up documentation.
POST command
Following on from the GET command, to post a node to the site (currently staging) is quite quick. To do so, complete the following:
Request: {domain}/entity/node
Content-Type: application/hal+json
Accept: application/hal+json
Body:
{"_links":{
"type":{"href":"{domain}/rest/type/node/{type}"}},
"title":[{"value": "Add title"}],
"body":[{"value":...
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...
Andrew Fletcher
•
The development version of the app database is held on the staging site. Note all development and testing will be completed on the staging site.
Drupal 9 uses:
HAL : Serializes entities using Hypertext Application Language.
RESTful Web Services
For testing purposes you can use either of the following Chrome extensions:
Postman;
DHC
Using Postman to perform a GET command for a node
The get string is https:/{your-site.com}/node/<nid>?_format=hal_json, where the...
Andrew Fletcher
•
The user parameters provides details about a specific user based...
Andrew Fletcher
•
If you are using theme_get_settings, such as:
$value =...
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...