Jump to content

tsdevelopment

Clients
  • Posts

    125
  • Joined

  • Last visited

  • Days Won

    1

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by tsdevelopment

  1. Better late than never. Facebook updated their docs and it seems to be possible to use their API without reviewing your app. So I updated the plugin with a new field where you can put your access token. You can read in the plugin description how to create a never expiring token. Hope that helps! Works like a charme!
  2. Currently is not possible. I will put it on the feature list.
  3. Facebook wants you to make a screencast to review your app since they have new standards. There you must show how your app interacts with their login data and several tings more. But here comes the problem: my app does not interact with login data or anything else. I only need an active app to fetch posts from their API. I wrote that in the review description and they did not accepted that. Now I have to discuss with them how they accept my app in their forum. Seems to become a long way... ?
  4. Facebook currently disagreed my App. I have to give it in review again.
  5. Should work with all endpoints of type 'posts'. Currently I am still waiting until Facebook reviewed my app. I don't know why it costs so much time. I am really sorry for that ?
  6. I am currently waiting until facebook reviewed my app so that I can say whether this is the solution or not. Seems without approved App you will always get no data back. I am waiting since more than one week ?
  7. Looked it up right now. What exactly do you want to display from Tumblr? Blog Posts?
  8. What's the plugin version you use / what's the ipboard version?
  9. See this post: I will have a look at the api changes during the next time. So far I can see you must approve your app to use it.
  10. Okay, I understand this. I will see whether I can implement that in an easy way or not. But please give me some time. I will look at this during the next week.
  11. Currently it is not possible. I see no reason for uploading multiple files in a verification process. Can you explain why you need multiple files?
  12. Yes, it's a translated string. Log into your ACP and search for 'headline_become_verified_desc'. Then insert your own translation.
  13. Are we talking about Twitter or Facebook?
  14. I will put it on my list. Only for me to understand: You want to see a list of posts wit a given hashtag everywhere at facebook? Or do you want to create a page and then filter the posts with a given hashtag? Actually I am waiting until facebook updates its policies so my plugin will work again.
  15. Thank you for your post. I will look at this the next few days. It's possible that Facebook updated several things. Update: Okay, I debugged my application in the Facebook Graph API Explorer and got the following error: Access to this data is temporarily disabled for non-active apps or apps that have not recently accessed this data due to changes we are making to the Facebook Platform. https://developers.facebook.com/status/issues/205942813488872/ It's an issue with the facebook platform. A fter searching on the internet I found several articles about the big data error with about 50 million people. Now Facebook changes their policies. Until then I can not do anything. I am really sorry ? More information: https://developers.facebook.com/status/issues/205942813488872/ Maybe there is another way to authenticate. I will have a look at this. Sorry ?
  16. Sorry, I didn't get a notification about your answer. What exactly do you want? Raw PHP? Curl? Guzzle? By the way: since we can use oauth2 I don't know if it makes sense to continue the plugin... maybe other people can say if they would use it or not.
  17. Hello, thank you for your post. At the moment it is only possible to GET data from the api. But I am working very hard to implement other methods like POST, PUT and DELETE. It costs a lot of time to test everything and implement the different validators for the different Nodes and its fields. The API was introduced to myself for one of my projects. So the returned data is different from the official API. If you need more output I can implement it in a few hours.
  18. I uploaded a new version a few moments ago. The member structure now includes the following fields: name - The display name nameSeo - The seo name profileUrl - The url to the member profile of the user email - The member email address. Be careful with this value. Maybe I will implement a little bit more security so that a this value will only be set if a mamber is admin or the member equals the current one. Hope that will help you!
  19. Yes, it is possible. I will do it during the next few days.
  20. That does not make sense. In this case every member would be verified automatically. You must use a seperate group. Otherwise the plugin can not differentiate whether a member is verified or not.
  21. You can reset the member's group in the ACP.
  22. Sorry, I did not get a notification here. Yes, will work.
  23. You can login with usernamen and password like that: Login as user To login as a user you must send a POST Request to the /auth/login endpoint with your username and password: curl \ -d username=max\ -d password=secret\ -X POST <baseurl>/restapi/auth/login For further requests you use the token as header.
  24. Sorry, did not get a notification about your post. Everything you need is described here: Make authorized requests For authorized requests you need an access token. Append the access token as authorization header and make your request: curl \ -H "Authorization: Bearer <token>" \ -X <baseurl>/restapi/forums You can validate if your token is valid by sending a request to the /auth/authenticate endpoint: curl \ -H "Authorization: Bearer <token>" \ -X POST <baseurl>/restapi/auth/authenticate In this example I use curl, but you can use other clients. Does it help or can you please specify your question a little bit more?
×
×
  • Create New...