I need oAuth2.0 bundle for Symfony 3.1 - symfony

I'm developing a new application using Symfony 3.1. I'm trying to find the oAuth2.0 bundle for the API build. I didn't find suitable bundle for the latest symfony version. I need help on getting the new bundle or suggest me any other alternative if anything available.

Related

Does Fluent Migrator work with .net core app?

I am trying to use Fluent Migrator with .net core2 application with no success (i did had a success with using Fluent Migrator with .net framework application).
What i did is the follow:
Created a new Class library project in the solution.
Added Flunt-migrator, ver 3.1.3
Created classes that inherit from Migration class.
implement the Down() and Up() functions.
located the Migrate.exe file under windows Users folder
in the migration project properties window, updated the build output path to the path of the Migrate.exe file.
ran build on the project, but the tables wasn't created under the
data base tables.
did i missed something?
This post would suggest that yes it does work, I don't have a huge amount of experience with fluent migrator but if i had to guess I would suspect the issue is that you are referencing a .exe rather than import the nuget packages
Fluentmigrator do support .NET core. All you just need to do is to follow their quick start guidelines. Documentation Quick Start

Want to run a .net framework 4.x or 3.x client against a asp.net core 2.0 signalr service. possible?

Want to run a .net framework 4.x or 3.x client against a asp.net core 2.0 signalr service. possible?
for now my client is a .net framework 4.x or 3.x console app.
eventually it will be a DLL i drop into unity3d plugins directory.
Then i can call my methods like so MyNet4ClientClass.MakeSignalrCoreCall(data).
Is this possible? Can .NET 3.x or 4.x talk to asp.net core 2.0 signalr service?
I tried to add the nuget package for Microsoft.AspNetCore.SignalR 1.0.0-alpha2-final but....
"Could not install package 'Microsoft.AspNetCore.SignalR 1.0.0-alpha2-final'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.5', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author. 0 "
i thought this post was hopeful
https://www.rizamarhaban.com/2016/09/13/asp-net-core-signalr-for-windows-10-uwp-app/
in the post the guy talks to signalr code 2.0 from a UWP app
the client UWP app uses "Microsoft.AspNet.SignalR.Client": "2.2.1" from nuget
and service which uses Microsoft.AspNetCore.SignalR.Server: 0.2.0-alpha1-22118
obtained from https://dotnet.myget.org/F/aspnetcore-ci-dev/api/v3/index.json repository
this works its seems because these older SignalR.Server packages still exposes themselves the old signalr way. you can see from the url it exposes at /signalr/hubs
but the new new signalr core changed its protocol sometime so now incompatible.
how can i talk to the new new signalr core from .net framework 4.x or 3.x client ?

Trying to build an ASP.NET Core API within a .NETFramework application

I am trying to build a .net core API using MVC, but I am trying to add it to an application that was not build on ASP.NET Core. When I try and configure the interfaces to be used in the core app (Setup.cs) I am not able to reference the interface. When trying reference the solution within the core app, I get the error
"The following projects are not supported as references: [solution name] has target frameworks that are incompatible with the targets in current project.
.NETCoreApp,Version=1.0
.NETFramework,Version=v4.5
What is the best way to be able to reference a .NETFramework project within a .NETCore project?
from comment above I realized it was not possible. I was not able to use the .net standard version in my core app.

Entity Framework Core Dependency Conflict involving JSON.NET

I have an Azure WebJobs console app which needs to access a database built around Entity Framework Core 1.0. I'm running into a dependency conflict warning when the console app runs.
Apparently, WebJobs utilizes v6 of JSON.NET but EF Core requires v9, I think because of the IOptions based configuration capability of EF Core.
Is it okay to ignore this type of warning? I have to use a ConfigurationManager-based approach to configuring the console app anyway, because WebJobs doesn't understand the type of config file approach used by ASPNET Core. So I don't >>think<< the conflict will ever amount to anything.
But I'm out of my depth and would appreciate some expert feedback.
At currently, I would suggest you use Console Application core to create your webjob. The Azure Webjob template currently based on .Net Framework. Maybe will have some issues when use EF core in it. Here is a .NET Core for Azure WebJob Sample. For how to let Azure WebJobs with .NET Core RC2, please refer to this article.

Can I use a .NETFramework project within a .NETCoreApp project?

I am building out a website using WebAPI in .NETCoreApp v1.0. However, I am trying to connect to an API for blackbook which is in another project that is built in .NETFramework v4.5.
When I attempt to add a reference to it in Reference Manager I get the following error:
The following projects are not supported as references:
BlackbookWCFProxy has target frameworks that are incompatible with targets in current project MainProject.
MainProject:
.NETCoreApp,Version=v1.0
BlackbookWCFProxy:
.NETFramework,Version=v4.5
So does that mean I have to scrap my entire project because a single API was built in .NETFramework? What about the other APIs I want to use? How can I get it to work nicely with my project?
You should install .NET Core RTM to make a .net core project so you will find this on following link

Resources