Git Product home page Git Product logo

skype-interviews-docs's Introduction

Skype Interviews API allows you to create, customize and schedule Skype Interview calls programmatically.

  1. Getting started
  2. Create interview links
  3. Customize capabilities
  4. Configure Skype call and chat
  5. Configure code editor
  6. Setup a coding task
  7. Schedule interviews
  8. Retrieve interview data
  9. Modify interview stage
  10. Manage job positions
  11. Manage tenants
  12. Subscribe to webhooks

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

skype-interviews-docs's People

Contributors

brene avatar microsoftopensource avatar msftgits avatar nimal-work avatar renebrandel avatar v-pegao avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

skype-interviews-docs's Issues

automatic date scheduling not working

I am trying to integrate Skype interview API using python and JWT.

for this 1st I am creating a token using python and jwt, and after that, I am sending API request call to skype interview with generated above token.

the request is processed and I am getting a proper response. the scheduling is set to automatic and date proposing is set to the candidate.

my issue is instead of the candidate to get the date proposing email the interviewer is getting the date selecting email without even proposing the date by the candidate.

You can see/check below my code:


`input_data = {

"iemail": "[email protected]",

"iduration": 90,

"cname": "Candidate",

"location": "LOCAL"

"position": "Full Stack Developer",

"cemail": "[email protected]",

"iname": "Interviewer"

}

def payloadGenertor(content):

jti = uuid.uuid1()

iss = "ISSUER"

iat = int(datetime.now().timestamp())

sub = hash256(content)

exp = iat+10

payload = {

"jti": f'{jti}',

"iss": f'{iss}',

"iat": iat,

"sub": f'{sub}',

"exp": exp

}

payloadStr = json.dumps(payload)

return payloadStr

url = "https://interviews.skype.com/api/interviews"

content = {

"position" : {

  "code": input_data['location']+" "+str(uuid.uuid1()).split('-')[0],

  "title": input_data['position'],

  "Description": f"Interviews for {input_data['position']} {input_data['location']}."

},

"participants": [

{

  "name": input_data['iname'],

  "email": input_data['iemail'],

  "role": "interviewer",

  "timezone": "Asia/Kolkata"

},

{

  "name": input_data['cname'],

  "email": input_data['cemail'],

  "role": "candidate",

  "timezone": "Asia/Kolkata"

}

],

"scheduling": {

"duration": int(input_data['iduration']),

"mode": "automatic",

"dateproposing": "candidate"

}

}

secret = "API_SECRET"

payloadHeader = {

"alg": "HS256",

"typ": "JWT"

}

payload = payloadGenertor(content)

jwt = generate_JWT(payloadHeader, payload, secret)

headers = {

'Content-Type': 'application/json',

'Authorization': 'Bearer ' + jwt

}

response = requests.post(url, data=content,headers=headers)

print(response.text)`

PHP demo code need fix

Hi,
I've spotted two minor issues with the PHP demo code. The first one is that you a undefined variable $secret on row:18. And the other is that the actual url has changed. So it curl_init should look like this: curl_init('https://interviews.skype.com/api/interviews');. Rather then this the code is working perfectly.
Thank you.

Token error - err:8

Hi, I'm getting the response: Token error - err:8 returned on adding any JSON data in the body. It runs fine with {} in the body but not with any data.
My code is here

Create Interview returns 401

I tried using multiple api keys and secrets but I get 401 every time. Not sure if Rest API is not working or its the client issue

Token error - err:5

Does anyone know what this error means?
Ive searched wide and far all over the internet, and i cant for the life of me find what it means, i got it yesterday and suddenly it fixed itself, i dont know if it was because i renewed the api tokens or any other thing
im developing a webapp that requires skype interview links to be generated automatically and because of this problems with the amazingly undocumented api, im thinking about changing services

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.