23
results
Andrew Fletcher
•
09 Jun 2022
Using the Drupal Poll module and passing via RESTful API - How do you get it working?
The initial set-up
POST: {domain}/mhc_custom/poll?_format=json
Content-type: application/json
Accept: application/json
{
"choice": "1"
}
If you run the above credentials, you will find the following response
{
"message": "The 'restful post mhc_custom_poll_submit' permission is required."
}
Let's have a look at the backend
path: Admin > Configuration > Web services >...
Andrew Fletcher
•
09 Jun 2022
This code is from Drupal 9 back-end for a React front-end via REST API.
Working...
Andrew Fletcher
•
07 Jun 2022
For an introduction into setting up RESTful hal+json refer to the set-up...
Andrew Fletcher
•
30 May 2022
How to use the Drupal REST API to trigger I've forgot (need to change) my...
Andrew Fletcher
•
19 May 2022
To get the X-CSRF token, first, you need to login as a member. Follow the steps...
Andrew Fletcher
•
19 May 2022
In retrieving an image, the primary element required is:
File id or fid;
Query string
Using the element outlined above the query string becomes:
{domain}/file/{fid}/?_format=hal_json
Replacing the following variables:
{domain} ~ your-site.com
{fid} ~ 3214
Becomes:
your-site.com/file/3214?_format=hal_json
Generates the following output:
{
"_links":
{
"self":
{
"href": "https://your-site.com/file/3214?_format=hal_json"
},
"type":
...
Andrew Fletcher
•
19 May 2022
For an introduction into setting up RESTful hal+json refer to the set-up...
Andrew Fletcher
•
19 May 2022
For an introduction into setting up RESTful hal+json refer to the set-up...
Andrew Fletcher
•
18 May 2022
For an introduction into setting up RESTful hal+json refer to the set-up...
Andrew Fletcher
•
18 May 2022
To POST an image is similar to the other posts mentioned on this site. This...
Andrew Fletcher
•
18 May 2022
For an introduction to setting up RESTful hal+json refer to the set-up documentation. This article is about retrieving vocabulary lists that are used in many of the requests such as:
Challenges:
Activate type {activate_time);
Distance marker {distance_marker};
Status {challenge_status}
Notifications:
Audience {notification_audience};
Status {notification_status};
Type {notification_types}
Rivals:
Status {notification_types}
The notation above is indicated as vocabulary name...
Andrew Fletcher
•
16 May 2022
The user API, was originally created under the General Documenation area...
Andrew Fletcher
•
16 May 2022
The development version of the app database is held on the staging site. Note...
Andrew Fletcher
•
16 May 2022
The user parameters provides details about a specific user based on the...
Andrew Fletcher
•
03 Feb 2021
If you are receiving the following 403 errors:
"message": "The used...