Posts by Alberto Aguiar • 1 point
4 posts
-
0
votes1
answer17
viewsA: Wordpress - How to insert custom_fields when inserting the publication via API v2?
So my appeal was for a solution that is not necessary to use plugin, however at the time I found this solution which I am using. I thank you all and hope you can help people with this problem in the…
wordpressanswered Alberto Aguiar 1 -
0
votes1
answer17
viewsQ: Wordpress - How to insert custom_fields when inserting the publication via API v2?
I am adding posts on my Wordpress site through the v2 API. The post is being inserted, but the custom_fields are not. Follow my payload below: $data = [ 'title' => 'Meu novo titulo 03', 'status'…
wordpressasked Alberto Aguiar 1 -
-1
votes1
answer490
viewsA: Authentication with 3 Json Web Token (JWT) parameters?
I managed to solve the problem, below the code that worked for me. I thank all those who have volunteered to help. public function authenticateJson(Request $request) { // pega as credenciais para o…
-
0
votes1
answer490
viewsQ: Authentication with 3 Json Web Token (JWT) parameters?
I am doing a login system with Laravel using JWT, however I need to pass 3 parameters, being them an identifier, user and password. I can get those parameters, but I can’t authenticate with the…