I have tried everything the xupload workflow tutorial on yii tells us to do but i keep on getting a 'forbidden' error. I have tried to tweak the code in whatever way i could to no avail. Please advise. thanks
Did you allow user access to action in accessControl() method?
Related
I am trying to connect to the LinkedIn adAnalyticsV2 Finder Analytics API.
Please may someone explain what I could possibly be doing wrong, or provide a link to the documentation that could point me in the right direction.
Thank you in advance!
Postman Parameters
I have followed the documentation, which I don't fully understand, and have created the requested App and having been granted the correct permission by the account admin.
I have entered the Bearer Token and have received the below error.
I have searched for documentation that explains possible errors but cannot seem to find anything.
This error could be caused by either missing scopes in your app's settings or you forgot to add the scopes in the OAuth configuration of Postman. Make sure your app has the permissions and your access token was created with the correct scopes. See this article for more information.
Hope this helps!
I researched on google and I'm stuck while I try to find out Bitrix24 API docs for users using PostMan. Is there an available resource that could help me solve my trouble? , I hope I could retrieve a document or some things like this. Thanks for reading <3
Try this endpoint on your postman
https://example.bitrix24.id/rest/crm.product.list
This is for the CRM Product List
https://training.bitrix24.com/rest_help/crm/products/crm_product_list.php
if this dosent work you can put .json
https://example.bitrix24.id/rest/crm.product.list.json
for the authentication you can go to Developer Resources - Other - Local Application
and put Postman callback on the Handler (https://oauth.pstmn.io/v1/callback).
dont forget to click the Script Only.
When I tried to see data through try it out functionality then it is showing the following error
Error: Network Error
Check the developer tools console, it might have more information on the error.
If you are using an Adblocker, it is possible your Adblocker is blocking the request.
I also tried after disabling adblocker but it also does not work
console showing like this
Why this is happening and what is the solution for this?
Thanks in advance
Try the url in your browser with the API key. You can see the response.
Example :
https://api.themoviedb.org/3/movie/popular?api_key=your_api_key
Found out this is due to extension 'stoplight' in their site. Site Manager has said
"I believe Stoplight has temporarily blocked the "Try it out" feature for our account because too many people were using it as the source
for their apps, and not using api.themoviedb.org for some reason. No
timeline on getting it restored, but that's the problem. - Travis Bell"
follow this thread, In case it gets sorted in future.
https://www.themoviedb.org/talk/600184fc6aa8e0004077e364?page=1#6001bbacbe4b36003d514ac3
Apparently it depends on the way you try to access the data.
In my React application I was using Axios.Which ended up with ReferenceError: response is not defined. (got no response)
Afterwards I tried using the javascript fetch API. It worked good for me
So if you are trying to use it in an app you might want to use the fetch API. If you just encounter network error while using Try it out function on site - then you can copy the link and paste it directly, it should work fine.
Currently, I am using it in my dashboard and I have JWT authentication for the API that I'm using. I have implemented the interceptor to update HTTP HEADERS so I saw I'm passing a header name 'token' and checked there if any unnecessary headers were given or not with not accepting the TMDB API server. So I have sent a clean HTTP request and it's working fine.
All you have to just remove the unnecessary HTTP HEADERS
I tried posting to /app/onlineMeetings but I always get 403 Forbidden error (both on NodeJS and C#) samples. I already set the API permissions on the app registration and on the scope. Is there anything else that I need to setup before this will work on my end?
Any help is appreciated. Thanks!
The API /app/onlinemeetings is beta API that has been deprecated and is replaced by /communications/onlinemeetings. I recommend trying that instead.
I was able to make it work. I didn't realize on the first try that I need to have the application permission level to able to use onlineMeetings endpoint. I was just following their NodeJS tutorial that doesn't cover endpoints that need application permissions.
Your problem probably is when you are going to get the access token for your application. If you are using common as tenant id, first you have to do is use your tenant id instead of common word, as explain here.
I have a problem integrating Vkontakte authentication using django-social-auth (https://github.com/omab/django-social-auth). I know that I have set everything right with AUTHENTICATION_BACKENDS as well as the API_KEYS and SECRETS for VKONTAKTE but still it does not work. I also have an authentication with Facebook and it works fine so I know that I am doing it right. Django-Social-Auth's documentation says about adding some JS script to make the authentication work but doesn't even provide some useful information about the script.
Can somebody provide some useful information about this? If you could provide some very nice tutorial on how to implement Vkontakte authentication using django-social-auth that would be great!
Thanks a lot guys! =)
If the url you're using is something like "http://localhost:8000/login/vkontakte/", try to change it to "http://localhost:8000/login/vkontakte-oauth2/".