Instant message web service use socket.io [closed] - web-services

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am developing an instant messaging web service, using Socket.IO. You can imagine it, workig like faceboọk chat.
I need to make a report to my teacher and I don't know what type of web service is this? I don't think that it is a RESTFul web services. Can you help me?

Socket.IO is a java script based web api. It follows client server architecture but it's not a web service.
http://en.wikipedia.org/wiki/Socket.IO
http://socket.io/

Socket.IO uses the Web Sockets protocol, with a fallback to other techniques when a client uses an ancient browser.
http://en.wikipedia.org/wiki/WebSocket

Related

Django rest auth with Google and VK? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I need SOCIAL REST AUTH in my Django project for SPA, and iOS app.
The best library I know is django-rest-auth (for allauth),
but there is no serialezers and views for rest auth with google and vk.
Does anybody has view and serializers for google and vk ? Or may be somebody know how to write it based on facebook serializer and view ?
try this one Python Social Auth - Application - Django
here you have documentation you can find there google, VK and Instagram also.

Best way to have a web user interface for a Qt application? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I have written a service using C++ and Qt framework (QtService). The service should run in the background. I need the service to have a web user interface and can be accessed using web browsers. I mean the service should act as as a web server and output html content to a specific port. I know there are some frameworks that can be used to generate web content in C++, but by taking into account that I am using Qt, I prefer to use Qt features as much as possible rather than a new framework. Any ideas?
I have read about Cutelyst on the Qt blog a few times, which seems an exact fit to your question.

Can Django REST Swagger be used to generate static HTML documentation? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm working on a new Django REST Framework project and I'm using Django REST Swagger to have provide beautiful documentation out of the box. However, I would like to share this documentation without having to spin up a staging machine or anything like that. I would just like to generate static sphinx-like documentation, without the fancy client features. I don't need to be able to actually hit the API endpoints. I just want a user friendly description of what endpoints exist, what they accept/return etc.
Is this possible using Django REST Swagger? If not, is there any tool that does this? Or do I just have to write sphinx documentation manually?
Django REST Swagger allows you to generate documentation with swagger-ui. You can follow the example as a starting point.
Here is an example of documentation using swagger-ui: http://petstore.swagger.io/

Team management website and mobile application [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I'm looking to build a mobile/web based team management system, it will be around web development, database , services and mobile development.
The website should be very simple, and the web service should be efficient (as lest bandwidth as possible between the mobile application and it).
the site should be easily add and remove users and users will be with different accounts and different rules.
So as developer what web programming language do you suggest and what type of web service shall be built.
The language behind the scenes has little to do with how the website looks, works, and how much bandwidth it uses. Use a language you or your team are familiar with.

Do any URL Shortening services with link tracking have a https accessible url? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have three websites that I want to generate tiny urls for search result pages every time someone clicks search. I like the http://bit.ly api and the fact that it offers tracking. However, it requires me to provide a password and does not offer ssl support. Does anyone know of a similar service that offers tracking, and a https accessible API?
I think short URLs for HTTPs connections are really bad idea. After all SSL is here to ensure (part of its job) that you are actually talking to the server requested.
But in short URL scenario you are talking to a different server first - an ideal scammer situation.
Bit.ly doesn't require you to send a password using their API; they require you to pass a token (aka API Key) that isn't in any way tied to your password. It's an URL shortening service after all. Considering all the information is pretty much public anyway, security shouldn't be a concern.