{"id":21131769,"url":"https://github.com/e-identification/bankid-java","last_synced_at":"2025-10-22T21:41:54.754Z","repository":{"id":44603780,"uuid":"391935099","full_name":"e-identification/bankid-java","owner":"e-identification","description":"BankID SDK for java","archived":false,"fork":false,"pushed_at":"2025-08-10T15:57:35.000Z","size":848,"stargazers_count":2,"open_issues_count":5,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-10T17:28:43.253Z","etag":null,"topics":["api-client","bankid","gradle","java","maven","sdk"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/e-identification.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-08-02T12:11:09.000Z","updated_at":"2025-08-10T15:57:38.000Z","dependencies_parsed_at":"2025-06-16T22:33:10.449Z","dependency_job_id":"66f8f420-a659-47a7-b086-bb457e02608d","html_url":"https://github.com/e-identification/bankid-java","commit_stats":null,"previous_names":["e-identification/bankid-java-sdk","e-identification/bankid-java","nicklaswallgren/bankid-java-sdk"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/e-identification/bankid-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-identification%2Fbankid-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-identification%2Fbankid-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-identification%2Fbankid-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-identification%2Fbankid-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/e-identification","download_url":"https://codeload.github.com/e-identification/bankid-java/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-identification%2Fbankid-java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273082421,"owners_count":25042282,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-01T02:00:09.058Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-client","bankid","gradle","java","maven","sdk"],"created_at":"2024-11-20T06:00:05.769Z","updated_at":"2025-10-22T21:41:54.657Z","avatar_url":"https://github.com/e-identification.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Continuous Integration](https://github.com/e-identification/bankid-java/workflows/ci/badge.svg)](https://github.com/e-identification/bankid-java/actions)\n[![License](https://img.shields.io/github/license/e-identification/bankid-java)](https://github.com/e-identification/bankid-java/blob/master/LICENSE)\n\n# BankID SDK\n\nSDK to interact with BankID API. It includes support for all the v6.0 features. There are\nsome [examples that may be useful](./examples).\n\n## Documentation\nSee the project's [Javadoc](https://e-identification.github.io/bankid-java/).\n\n## Installation\n\nThe artifact is available through Maven Central via Sonatype.\n\n### Maven\n\n```xml\n\n\u003cdependency\u003e\n    \u003cgroupId\u003edev.eidentification\u003c/groupId\u003e\n    \u003cartifactId\u003ebankid-sdk\u003c/artifactId\u003e\n    \u003cversion\u003e0.16.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Gradle\n\n```\nimplementation 'dev.eidentification:bankid-sdk:0.16.0'\n```\n\n## Changelog\n\nPlease see the [changelog](./CHANGELOG.md) for a release history and indications on how to upgrade from one version to\nanother.\n\n## Contributing\n\nIf you find any problems or have suggestions about this library, please submit an issue. Moreover, any pull request,\ncode review and feedback are welcome.\n\n## Code Guide\n\nWe use GitHub Actions to make sure the codebase is consistent and continuously tested (`gradle check`). We try to keep\ncomments at a maximum of 120 characters of length and code at 120.\n\n## General Usage\n\n```java \nimport static dev.eidentification.configuration.bankid.Configuration.URL_TEST;\n\nimport dev.eidentification.bankid.BankId;\nimport dev.eidentification.request.client.bankid.AuthenticationRequest;\nimport dev.eidentification.response.client.bankid.AuthenticateResponse;\nimport dev.eidentification.utils.client.bankid.ResourceUtils;\nimport dev.eidentification.configuration.bankid.Configuration;\nimport dev.eidentification.configuration.bankid.Pkcs12;\nimport dev.eidentification.exceptions.bankid.BankIdApiErrorException;\n\nfinal InputStream pkcs12Resource = ResourceUtils.tryInputStreamFrom(\"test.p12\");\nfinal InputStream caResource = ResourceUtils.tryInputStreamFrom(\"ca.test.crt\");\n\nfinal Configuration configuration = Configuration.builder()\n    .baseURL(URL_TEST)\n    .pkcs12(Pkcs12.of(pkcs12Resource, \"qwerty123\"))\n    .certificate(caResource)\n    .build();\n\nfinal BankId bankId = BankId.of(configuration);\n\nfinal AuthenticateResponse authenticateResponse = bankId.authenticate(\n    AuthenticationRequest.builder()\n        .personalNumber(\"PERSONAL_NUMBER\")\n        .endUserIp(\"IP_ADDRESS\")\n        .build());\n```\n\n## License\n\n[MIT](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fe-identification%2Fbankid-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fe-identification%2Fbankid-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fe-identification%2Fbankid-java/lists"}