developers.jelevelamain.fr rapport :   Visitez le site


Titre:api je lève la main

La description :please click here if you are not redirected within a few seconds. accueil docs authentification api key télécharger welcome to the je leve la main api ! overview the je leve la main api (application p...

Classement Alexa Global: # 17,166,313

Server:Apache...

L'adresse IP principale: 54.93.98.249,Votre serveur Germany,Frankfurt am Main ISP:A100 ROW GmbH  TLD:fr Code postal:de

Ce rapport est mis à jour en 25-Jul-2018

Created Date:2012-05-21
Changed Date:2017-04-05
Expires Date:2018-05-21

Données techniques du developers.jelevelamain.fr


Geo IP vous fournit comme la latitude, la longitude et l'ISP (Internet Service Provider) etc. informations. Notre service GeoIP a trouvé l'hôte developers.jelevelamain.fr.Actuellement, hébergé dans Germany et son fournisseur de services est A100 ROW GmbH .

Latitude: 50.115520477295
Longitude: 8.6841697692871
Pays: Germany (de)
Ville: Frankfurt am Main
Région: Hessen
ISP: A100 ROW GmbH

the related websites

domaine Titre
    69papillon.com 5emegauche.com wildtangent.fr commitstrip.com unesdoc.unesco.org 

Analyse d'en-tête HTTP


Les informations d'en-tête HTTP font partie du protocole HTTP que le navigateur d'un utilisateur envoie à appelé Apache contenant les détails de ce que le navigateur veut et acceptera de nouveau du serveur Web.

Access-Control-Allow-Headers:x-requested-with, Content-Type, origin, authorization, accept, client-security-token
Access-Control-Max-Age:1000
Content-Encoding:gzip
Transfer-Encoding:chunked
Set-Cookie:PHPSESSID=v5obgrch1okjfdft1abegp5ug6; path=/
Expires:Thu, 19 Nov 1981 08:52:00 GMT
Vary:Accept-Encoding,User-Agent
Server:Apache
Connection:close
Pragma:no-cache
Cache-Control:no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0, no-cache
Date:Wed, 25 Jul 2018 01:09:05 GMT
Access-Control-Allow-Origin:*
Access-Control-Allow-Methods:POST, GET, OPTIONS, DELETE, PUT
Content-Type:text/html;charset=UTF-8
X-Mod-Pagespeed:1.11.33.5-0

DNS

ipv4:IP:54.93.98.249
ASN:16509
OWNER:AMAZON-02 - Amazon.com, Inc., US
Country:US

HtmlToText

please click here if you are not redirected within a few seconds. accueil docs authentification api key télécharger welcome to the je leve la main api ! overview the je leve la main api (application programming interface) is a web service that allows manipulating and computing statistics on je leve la main data in your own applications. you can interact with the api by sending http requests in the language of your choice, or in an object-oriented (and easier) way by using the javascript sdk (software development kit). the main purpose of je leve la main api is to : retrieve sets of users matching some conditions (e.g. session attendees, user group members...), retrieve sets of quizzes matching some conditions (e.g. author, creation date...), compute the results of a set of users on a set of quizzes (e.g. number of good answers, percentile, ...) . results may be detailed (results of each user) or aggregated (e.g. min, max or average grouped by quiz or user). since the data sets computed by the api may be very large, they are returned under the form of pages containing a limited number of items. it is possible to combine data sets of same nature (users, quizzes or results) by applying set operators such as union or intersection. the api also allows you to insert data to your je leve la main account, such as quizzes. the documentation pages provide a detailed description of api requests, and include an interactive part that allows you to try them on live data. prerequisites an api key is required to submit requests to the je leve la main api from your web or server applications. the api key manager allows you to consult, add and delete api keys. you need to be logged in to use it; if not, click on the "login" button at the right top of the page). in addition, an access token may be required if your application manipulates private user data through the api. see the authentication section for details. example of use the je leve la main application includes a module drawing various charts related to session statistics. this module is an example of api client and has its own api key. to illustrate how the chart module interacts with the api, let consider a session #71330434 with 30 attendees (a classroom) where 2 quizzes have been played. in the chart module, a user asks to display the histogram of the average number of good answers and obtains the following result : the data required to draw this histogram are retrieved by the chart module by sending 3 requests to the api : request #1: the chart module sends a getuserset request to the api to retrieve the attendees of the session #71330434 : get https://api.jelevelamain.fr/getuserset?sessionid=71330434&apikey;=api_key&accesstoken;=access_token where api_key is the api key of the chart module and access_token the access token of the user that is logged in je leve la main. the api response is the first page of a user set identified by tlvj87xtktkonndg4tvw-g : { "datasetid" : "tlvj87xtktkonndg4tvw-g" , "itemtype" : "user" , "numberofpages" : 1 , "numberofitemsperpage" : 50 , "totalnumberofitems" : 30 , "items" : user [], "currentpageindex" : 1 } request #2: the chart module sends a getquizset request to the api to retrieve the quizzes played in the session #71330434 : get https://api.jelevelamain.fr/getquizset?sessionid=71330434&apikey;=api_key&accesstoken;=access_token the api response is the first page of a quiz set identified by vqc6eavcbnclwxfuubc0tg : { "datasetid" : "vqc6eavcbnclwxfuubc0tg" , "itemtype" : "quiz" , "numberofpages" : 1 , "numberofitemsperpage" : 50 , "totalnumberofitems" : 2 , "items" : quiz [], "currentpageindex" : 1 } request #3: the chart module sends a getresults request to the api to retrieve the average number of good answers of each user of the set tlvj87xtktkonndg4tvw-g on the quizzes of the set vqc6eavcbnclwxfuubc0tg : get https://api.jelevelamain.fr/getresults?sessionid=71330434&usersetid;=tlvj87xtktkonndg4tvw-g&quizsetid;=vqc6eavcbnclwxfuubc0tg&sessionids;=71330434&resulttypes;=nbgoodanswers&includequizzes;=answered&aggregationfunctions;=average&groupby;=user&apikey;=api_key&accesstoken;=access_token { "datasetid" : "dkksl7fpfzqs-3dlosi66a" , "itemtype" : "computedresult" , "numberofpages" : 1 , "numberofitemsperpage" : 50 , "totalnumberofitems" : 30 , "items" : computedresult [], "currentpageindex" : 1 } note that only 3 requests are required because each data set is entirely included in one page. for larger sets, the chart module must send getdatasetpage requests to retrieve all the items.

Informations Whois


Whois est un protocole qui permet d'accéder aux informations d'enregistrement.Vous pouvez atteindre quand le site Web a été enregistré, quand il va expirer, quelles sont les coordonnées du site avec les informations suivantes. En un mot, il comprend ces informations;

%%
%% This is the AFNIC Whois server.
%%
%% complete date format : DD/MM/YYYY
%% short date format : DD/MM
%% version : FRNIC-2.5
%%
%% Rights restricted by copyright.
%% See https://www.afnic.fr/en/products-and-services/services/whois/whois-special-notice/
%%
%% Use '-h' option to obtain more information about this service.
%%
%% [2600:3c03:0000:0000:f03c:91ff:feae:779d REQUEST] >> jelevelamain.fr
%%
%% RL Net [##########] - RL IP [#########.]
%%

domain: jelevelamain.fr
status: ACTIVE
hold: NO
holder-c: ANO00-FRNIC
admin-c: ANO00-FRNIC
tech-c: GR283-FRNIC
zone-c: NFC1-FRNIC
nsl-id: NSL33187-FRNIC
registrar: GANDI
Expiry Date: 21/05/2018
created: 21/05/2012
last-update: 05/04/2017
source: FRNIC

ns-list: NSL33187-FRNIC
nserver: b.dns.gandi.net
nserver: a.dns.gandi.net
nserver: c.dns.gandi.net
source: FRNIC

registrar: GANDI
type: Isp Option 1
address: 63-65 boulevard Massena
address: PARIS
country: FR
phone: +33 1 70 37 76 61
fax-no: +33 1 43 73 18 51
e-mail: reg.afnic-notification@gandi.net
website: http://www.gandi.net
anonymous: NO
registered: 09/03/2004
source: FRNIC

nic-hdl: ANO00-FRNIC
type: PERSON
contact: Ano Nymous
remarks: -------------- WARNING --------------
remarks: While the registrar knows him/her,
remarks: this person chose to restrict access
remarks: to his/her personal data. So PLEASE,
remarks: don't send emails to Ano Nymous. This
remarks: address is bogus and there is no hope
remarks: of a reply.
remarks: -------------- WARNING --------------
registrar: GANDI
changed: 10/01/2012 anonymous@anonymous
anonymous: YES
obsoleted: NO
source: FRNIC

nic-hdl: GR283-FRNIC
type: ROLE
contact: GANDI ROLE
address: Gandi
address: 15, place de la Nation
address: 75011 Paris
country: FR
e-mail: noc@gandi.net
trouble: -------------------------------------------------
trouble: GANDI is an ICANN accredited registrar
trouble: for more information:
trouble: Web: http://www.gandi.net
trouble: -------------------------------------------------
trouble: - network troubles: noc@gandi.net
trouble: - SPAM: abuse@gandi.net
trouble: -------------------------------------------------
admin-c: NL346-FRNIC
tech-c: NL346-FRNIC
tech-c: TUF1-FRNIC
notify: noc@gandi.net
registrar: GANDI
changed: 03/03/2006 noc@gandi.net
anonymous: NO
obsoleted: NO
source: FRNIC


  REFERRER http://www.nic.fr

  REGISTRAR AFNIC

SERVERS

  SERVER fr.whois-servers.net

  ARGS jelevelamain.fr

  PORT 43

  TYPE domain
RegrInfo
DISCLAIMER
%
% This is the AFNIC Whois server.
%
% complete date format : DD/MM/YYYY
% short date format : DD/MM
% version : FRNIC-2.5
%
% Rights restricted by copyright.
% See https://www.afnic.fr/en/products-and-services/services/whois/whois-special-notice/
%
% Use '-h' option to obtain more information about this service.
%
% [2600:3c03:0000:0000:f03c:91ff:feae:779d REQUEST] >> jelevelamain.fr
%
% RL Net [##########] - RL IP [#########.]
%

  REGISTERED yes

ADMIN

  HANDLE ANO00-FRNIC

  TYPE PERSON

  CONTACT Ano Nymous

REMARKS
-------------- WARNING --------------
While the registrar knows him/her,
this person chose to restrict access
to his/her personal data. So PLEASE,
don't send emails to Ano Nymous. This
address is bogus and there is no hope
of a reply.
-------------- WARNING --------------

  SPONSOR GANDI

  CHANGED 2012-01-10

  ANONYMOUS YES

  OBSOLETED NO

  SOURCE FRNIC

TECH

  HANDLE GR283-FRNIC

  TYPE ROLE

  CONTACT GANDI ROLE

ADDRESS
Gandi
15, place de la Nation
75011 Paris

  COUNTRY FR

  EMAIL noc@gandi.net

TROUBLE
-------------------------------------------------
GANDI is an ICANN accredited registrar
for more information:
Web: http://www.gandi.net
-------------------------------------------------
- network troubles: noc@gandi.net
- SPAM: abuse@gandi.net
-------------------------------------------------

  ADMIN-C NL346-FRNIC

TECH-C
NL346-FRNIC
TUF1-FRNIC

  NOTIFY noc@gandi.net

  SPONSOR GANDI

  CHANGED 2006-03-03

  ANONYMOUS NO

  OBSOLETED NO

  SOURCE FRNIC

OWNER

  HANDLE ANO00-FRNIC

  TYPE PERSON

  CONTACT Ano Nymous

REMARKS
-------------- WARNING --------------
While the registrar knows him/her,
this person chose to restrict access
to his/her personal data. So PLEASE,
don't send emails to Ano Nymous. This
address is bogus and there is no hope
of a reply.
-------------- WARNING --------------

  SPONSOR GANDI

  CHANGED 2012-01-10

  ANONYMOUS YES

  OBSOLETED NO

  SOURCE FRNIC

DOMAIN

  STATUS ACTIVE

  HOLD NO

  SPONSOR GANDI

  EXPIRY DATE 21/05/2018

  CREATED 2012-05-21

  CHANGED 2017-04-05

  SOURCE FRNIC

  HANDLE NSL33187-FRNIC

NSERVER

  B.DNS.GANDI.NET 213.167.229.1

  A.DNS.GANDI.NET 173.246.98.1

  C.DNS.GANDI.NET 217.70.179.1

  NAME jelevelamain.fr

Go to top

Erreurs


La liste suivante vous montre les fautes d'orthographe possibles des internautes pour le site Web recherché.

  • www.udevelopers.com
  • www.7developers.com
  • www.hdevelopers.com
  • www.kdevelopers.com
  • www.jdevelopers.com
  • www.idevelopers.com
  • www.8developers.com
  • www.ydevelopers.com
  • www.developersebc.com
  • www.developersebc.com
  • www.developers3bc.com
  • www.developerswbc.com
  • www.developerssbc.com
  • www.developers#bc.com
  • www.developersdbc.com
  • www.developersfbc.com
  • www.developers&bc.com
  • www.developersrbc.com
  • www.urlw4ebc.com
  • www.developers4bc.com
  • www.developersc.com
  • www.developersbc.com
  • www.developersvc.com
  • www.developersvbc.com
  • www.developersvc.com
  • www.developers c.com
  • www.developers bc.com
  • www.developers c.com
  • www.developersgc.com
  • www.developersgbc.com
  • www.developersgc.com
  • www.developersjc.com
  • www.developersjbc.com
  • www.developersjc.com
  • www.developersnc.com
  • www.developersnbc.com
  • www.developersnc.com
  • www.developershc.com
  • www.developershbc.com
  • www.developershc.com
  • www.developers.com
  • www.developersc.com
  • www.developersx.com
  • www.developersxc.com
  • www.developersx.com
  • www.developersf.com
  • www.developersfc.com
  • www.developersf.com
  • www.developersv.com
  • www.developersvc.com
  • www.developersv.com
  • www.developersd.com
  • www.developersdc.com
  • www.developersd.com
  • www.developerscb.com
  • www.developerscom
  • www.developers..com
  • www.developers/com
  • www.developers/.com
  • www.developers./com
  • www.developersncom
  • www.developersn.com
  • www.developers.ncom
  • www.developers;com
  • www.developers;.com
  • www.developers.;com
  • www.developerslcom
  • www.developersl.com
  • www.developers.lcom
  • www.developers com
  • www.developers .com
  • www.developers. com
  • www.developers,com
  • www.developers,.com
  • www.developers.,com
  • www.developersmcom
  • www.developersm.com
  • www.developers.mcom
  • www.developers.ccom
  • www.developers.om
  • www.developers.ccom
  • www.developers.xom
  • www.developers.xcom
  • www.developers.cxom
  • www.developers.fom
  • www.developers.fcom
  • www.developers.cfom
  • www.developers.vom
  • www.developers.vcom
  • www.developers.cvom
  • www.developers.dom
  • www.developers.dcom
  • www.developers.cdom
  • www.developersc.om
  • www.developers.cm
  • www.developers.coom
  • www.developers.cpm
  • www.developers.cpom
  • www.developers.copm
  • www.developers.cim
  • www.developers.ciom
  • www.developers.coim
  • www.developers.ckm
  • www.developers.ckom
  • www.developers.cokm
  • www.developers.clm
  • www.developers.clom
  • www.developers.colm
  • www.developers.c0m
  • www.developers.c0om
  • www.developers.co0m
  • www.developers.c:m
  • www.developers.c:om
  • www.developers.co:m
  • www.developers.c9m
  • www.developers.c9om
  • www.developers.co9m
  • www.developers.ocm
  • www.developers.co
  • developers.jelevelamain.frm
  • www.developers.con
  • www.developers.conm
  • developers.jelevelamain.frn
  • www.developers.col
  • www.developers.colm
  • developers.jelevelamain.frl
  • www.developers.co
  • www.developers.co m
  • developers.jelevelamain.fr
  • www.developers.cok
  • www.developers.cokm
  • developers.jelevelamain.frk
  • www.developers.co,
  • www.developers.co,m
  • developers.jelevelamain.fr,
  • www.developers.coj
  • www.developers.cojm
  • developers.jelevelamain.frj
  • www.developers.cmo
 Afficher toutes les erreurs  Cacher toutes les erreurs